1. 97f9d4f Patch #1318 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  2. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  3. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  4. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  5. 48952d3 Forgot to run the tests after making the places and msg argument keyword-only. by Jeffrey Yasskin · 17 years ago
  6. 674e938 Add a workaround for a strange bug on win64, when _ctypes is compiled by Thomas Heller · 17 years ago
  7. 680d7be Fix a buggy test. str8 objects contained NUL-terminated strings, by Thomas Heller · 17 years ago
  8. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  9. a73bfee Raise statement normalization in Lib/ctypes/. by Collin Winter · 17 years ago
  10. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  11. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  12. 283f3ff Remove spurious (and unneeded) import of StringIO. by Guido van Rossum · 17 years ago
  13. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  14. 2fb5ac7 Fix the ctypes tests. Patch from Victor Stinner. He writes: by Thomas Heller · 17 years ago
  15. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  16. 49c12ac Fix ctypes tests on OS X. by Thomas Heller · 17 years ago
  17. 19b5254 c_char, c_char_p objects and c_char array structure fields return by Thomas Heller · 17 years ago
  18. 27384da Do not accept str8 type in function calls any longer. by Thomas Heller · 17 years ago
  19. 84d66a0 Remove all the Python 2.3 compatibility markers (the Python 3 ctypes by Thomas Heller · 17 years ago
  20. e5095e1 Structure fields of type c_char array or c_wchar array accept bytes or by Thomas Heller · 17 years ago
  21. 745f5e2 No crashes on Linux in the ctypes test suite any longer, so we can by Thomas Heller · 17 years ago
  22. f4f771f Fix segfault on Linux. by Thomas Heller · 17 years ago
  23. 8750384 More easy fixes. The ctypes unittests pass now (on Windows). by Thomas Heller · 17 years ago
  24. d660fab binascii.hexlify returns a bytes object; we must convert it to str by Thomas Heller · 17 years ago
  25. 0d8a1fd Simple fixes. by Thomas Heller · 17 years ago
  26. d68d131 Simple fixes. by Thomas Heller · 17 years ago
  27. f0d8b6e Simple fixes. by Thomas Heller · 17 years ago
  28. 3821e31 c_void_p.from_param accepts bytes. Fix test_prototypes. by Thomas Heller · 17 years ago
  29. 3d79dd9 c_char_p.from_param accepts bytes. Fix test_parameters. by Thomas Heller · 17 years ago
  30. 7a76e8f Fix another test. by Thomas Heller · 17 years ago
  31. 9ccf468 test_slicing does not segfault under linux anymore, so we can run this by Thomas Heller · 17 years ago
  32. 7775c71 Accept bytes as parameter to foreign functions without prototype. by Thomas Heller · 17 years ago
  33. 6083131 Accept bytes for c_wchar_p instances and c_wchar array instances. by Thomas Heller · 17 years ago
  34. 2c5e964 Accept bytes in c_char_p and c_wchar_p types. by Thomas Heller · 17 years ago
  35. 3af4266 ctypes.c_char and ctypes.c_wchar now accept initialization from byte objects. by Thomas Heller · 17 years ago
  36. f7c6d86 Use a unicode string as unique_key instead of 8-bit string. by Thomas Heller · 17 years ago
  37. 7c1ebe3 Fix a ctypes test. by Thomas Heller · 17 years ago
  38. 1f498ef Fix a ctypes test. by Thomas Heller · 17 years ago
  39. e409b97 Make this a pure-ASCII file. This used to have a Latin-1 coding and by Guido van Rossum · 17 years ago
  40. f5af466 Fix one more ctypes test, and disable the tests that were segfaulting. by Thomas Heller · 17 years ago
  41. c92159a dict.keys() returns an iterable, convert it into a list. by Thomas Heller · 17 years ago
  42. 13eb6ca Fix some more ctypes tests. by Thomas Heller · 17 years ago
  43. 9004427 Fix some simple ctypes tests. by Thomas Heller · 17 years ago
  44. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  45. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  46. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  47. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  48. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  49. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  50. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  51. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  52. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  53. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  54. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 18 years ago
  55. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  56. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  57. fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 18 years ago
  58. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  59. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  60. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  61. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  62. 1b01e5c Fix some more has_key() uses. This could really use a tool to automate... by Guido van Rossum · 18 years ago
  63. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  64. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  65. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  66. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  67. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  68. a022789 Plug some refcount leaks when tests are run repeatedly. by Thomas Heller · 18 years ago
  69. 6058aa4 Remove the slightly broken test_leaks.py. by Thomas Heller · 18 years ago
  70. 51f77b5 Remove the magic to run an uninstalled ctypes version from a CVS sandbox. by Thomas Heller · 18 years ago
  71. 57e881e Disable the testcase that crashes solaris. by Thomas Heller · 18 years ago
  72. e8d09e5 Whitespace normalization. by Tim Peters · 18 years ago
  73. d758d3d Remove .cvsignore and set svn:ignore for *.pyc *.pyo. by Hye-Shik Chang · 18 years ago
  74. babddfc Copy ctypes-0.9.9.4 Python modules from external into the trunk. by Thomas Heller · 18 years ago