1. 74b3016 #6553: crash in cPickle.load(), when given a StringIO with incomplete data. by Amaury Forgeot d'Arc · 15 years ago
  2. 39186bc use bools for autoraise by Benjamin Peterson · 15 years ago
  3. 46ca2f2 Backport of fix for issue 6542: make sure by R. David Murray · 15 years ago
  4. ec812ca Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. by Georg Brandl · 15 years ago
  5. af2406f Issue #6545: Removed assert statements in distutils.Extension, so the behavior is similar when used with -O by Tarek Ziadé · 15 years ago
  6. d8431ae Revert rev 74134, as it does not completely fixx issue #6493. by Thomas Heller · 15 years ago
  7. 6adda96 Issue #6493: Fix a ctypes problem setting bitfields more than 31 bits wide. by Thomas Heller · 15 years ago
  8. 4d4b739 Merged revisions 74121-74122 via svnmerge from by Benjamin Peterson · 15 years ago
  9. 4879c90 the Slice in x[::] has to have step as None to help the interpreter by Benjamin Peterson · 15 years ago
  10. a2514f4 Merged revisions 74116 via svnmerge from by Benjamin Peterson · 15 years ago
  11. 840077c Merged revisions 73771,73811,73840,73842,73848-73849,73861,73957-73960,73964-73969,73972-73974,73977,73981,73984,74065,74113 via svnmerge from by Benjamin Peterson · 15 years ago
  12. c037943 http://bugs.python.org/issue6499 gzip.GzipFile may not exist as a parent class by Kristján Valur Jónsson · 15 years ago
  13. 6d75590 http://bugs.python.org/issue6499 by Kristján Valur Jónsson · 15 years ago
  14. d7b0eeb split unittest.py into a package by Benjamin Peterson · 15 years ago
  15. 5fee460 Fix for issue5102, timeout value propages between redirects, proxy, digest and by Senthil Kumaran · 15 years ago
  16. 88a0a2e Issue #6431: Fix Fraction comparisons with unknown types, and with by Mark Dickinson · 15 years ago
  17. e78e5d2 Issue #6415: Fixed warnings.warn sagfault on bad formatted string. by Hirokazu Yamamoto · 15 years ago
  18. 3e8b869 Revert r74028. by Georg Brandl · 15 years ago
  19. 3601a38 #6482: simplify "except: raise" to "finally:". by Georg Brandl · 15 years ago
  20. a99dedf #6466 refactored distutils duplicate get_versions() functions (used to get gcc/ld/dllwrap versions) by Tarek Ziadé · 15 years ago
  21. 7530e47 Issue 6433: multiprocessing.pool.map hangs on empty list by Jesse Noller · 15 years ago
  22. d77faaf #5910: fix kqueue for calls with more than one event. by Georg Brandl · 15 years ago
  23. b9ee881 #6076 Add a title to the IDLE Preferences window. by Amaury Forgeot d'Arc · 15 years ago
  24. d5a23e3 methods' names pep8ification by Ezio Melotti · 15 years ago
  25. 91dcd93 Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issue 6418. by Michael Foord · 15 years ago
  26. cecaa65 Use a different VER command output parser to address the localization by Marc-André Lemburg · 15 years ago
  27. 19e5b3f Use a new global DEV_NULL instead of hard-coding /dev/null into the system by Marc-André Lemburg · 15 years ago
  28. 70dda76 #1616979: Add the cp720 (Arabic DOS) encoding. by Amaury Forgeot d'Arc · 15 years ago
  29. cbb24b3 Issue #6314: logging: Extra checks on the "level" argument in more places. by Vinay Sajip · 15 years ago
  30. 0369ba2 http://bugs.python.org/issue6267 Add more tests for the xlmrpc.ServerProxy by Kristján Valur Jónsson · 15 years ago
  31. 6633a66 Fixed distutils test. by Hirokazu Yamamoto · 15 years ago
  32. 9bd39c1 put downloaded test support files in Lib/test/data instead of the cwd by Benjamin Peterson · 15 years ago
  33. 51f32c0 reverted changes for #6459 (doesn't apply on 2.x) by Tarek Ziadé · 15 years ago
  34. 74b8d33 #2622 Import errors in email.message, from a py2app standalone application. by Amaury Forgeot d'Arc · 15 years ago
  35. 23a3775 fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit' by Tarek Ziadé · 15 years ago
  36. 51c045d cleaned up distutils.build_ext module by Tarek Ziadé · 15 years ago
  37. 9175742 Add basic tests for the return value of os.popen().close(). by Amaury Forgeot d'Arc · 15 years ago
  38. ef6007c http://bugs.python.org/issue6460 by Kristján Valur Jónsson · 15 years ago
  39. 6cbfc12 more cleanups and if zlib -> skipUnless(zlib) by Ezio Melotti · 15 years ago
  40. 8318afa #6447: typo in subprocess docstring by Amaury Forgeot d'Arc · 15 years ago
  41. 1c6ebc2 cleaned up distutils.command.build by Tarek Ziadé · 15 years ago
  42. 3f7cba1 Added test coverage for distutils.command.build by Tarek Ziadé · 15 years ago
  43. 8c40001 Fixed #6455 (the test shall use pyd files under win32, rather than so files) by Tarek Ziadé · 15 years ago
  44. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 15 years ago
  45. b0c828a Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames by R. David Murray · 15 years ago
  46. 6fcf7ca Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see by R. David Murray · 15 years ago
  47. 573399a Curdir needs to be in the path for the test to work on all buildbots. by R. David Murray · 15 years ago
  48. fbf2cc4 Specify umask in execute bit test to get consistent results by R. David Murray · 15 years ago
  49. 00490f2 PendingDeprecationWarning -> DeprecationWarning in build_ext by Tarek Ziadé · 15 years ago
  50. 00e1f63 Make test work with -O. by R. David Murray · 15 years ago
  51. 8a624a9 Conditionalize test cleanup code to eliminate traceback, which will by R. David Murray · 15 years ago
  52. 42b145d Sets the compiler attribute to keep the old behavior for third-party packages. by Tarek Ziadé · 15 years ago
  53. 5fd3af2 Issue #1523: Remove deprecated overflow masking in struct module, and by Mark Dickinson · 15 years ago
  54. bb3895c Expand test coverage for struct.pack with native integer packing; by Mark Dickinson · 15 years ago
  55. ca6b5f3 Add skipping to struct test that only applies when overflow masking is in effect by Mark Dickinson · 15 years ago
  56. c71fae5 http://bugs.python.org/issue6382 by Kristján Valur Jónsson · 15 years ago
  57. 23a736a Issue 6070: when creating a compiled file, after copying the mode bits, on by R. David Murray · 15 years ago
  58. e670e5a Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option) by Tarek Ziadé · 15 years ago
  59. f5b8ea9 http://bugs.python.org/issue6382 by Kristján Valur Jónsson · 15 years ago
  60. 463dc4b Issues #1530559, #1741130: Fix various inconsistencies in struct.pack by Mark Dickinson · 15 years ago
  61. 5b1abb7 Backport test cases added in r73852. by Alexandre Vassalotti · 15 years ago
  62. 16a0247 Fix bad variable name in r73846. by Alexandre Vassalotti · 15 years ago
  63. 0fe7991 Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and by Alexandre Vassalotti · 15 years ago
  64. e7a0cc2 if zlib -> skipUnless(zlib) and minor cleanups by Ezio Melotti · 15 years ago
  65. 1844b0d Merge r73838 from py3k branch. Use the nondeprecated unittest method names. by Gregory P. Smith · 15 years ago
  66. cd947e0 using print statements when used for user interaction by Tarek Ziadé · 15 years ago
  67. 63f1738 Fixed #6413: fixed log level in distutils.dist.announce by Tarek Ziadé · 15 years ago
  68. dd7ca24 Use select.poll() in subprocess, when available, rather than select() so that by Gregory P. Smith · 15 years ago
  69. e5445da http://bugs.python.org/issue6267 by Kristján Valur Jónsson · 15 years ago
  70. f83648e http://bugs.python.org/issue6267 by Kristján Valur Jónsson · 15 years ago
  71. b5faac7 http://bugs.python.org/issue6381 by Kristján Valur Jónsson · 15 years ago
  72. 9ad7bbc cleaned distutils.file_util by Tarek Ziadé · 15 years ago
  73. eea9d0d basic tests to raise distutils.file_util coverage by Tarek Ziadé · 15 years ago
  74. fe97ebb cleaned up distutils.command.build_py by Tarek Ziadé · 15 years ago
  75. 65ec61e Fixed #6403 : package path usage for build_ext by Tarek Ziadé · 15 years ago
  76. 50a2252 condense with assertRaises by Benjamin Peterson · 15 years ago
  77. d3243d8 test that compile() accepts the future flag by Benjamin Peterson · 15 years ago
  78. 753d162 when print() gets unicode arguments, sep and end should be unicode by default #4618 by Benjamin Peterson · 15 years ago
  79. 1bf4765 only order comparisons are removed in py3k #6119 by Benjamin Peterson · 15 years ago
  80. 0c6de43 remove this test; a module level warning is enough by Benjamin Peterson · 15 years ago
  81. 3757fbb pep8-fied and cleaned up distutils.util by Tarek Ziadé · 15 years ago
  82. 85bb628 cleaned up the bdist_dumb module by Tarek Ziadé · 15 years ago
  83. d0ca455 raising bdist_dumb test coverage by Tarek Ziadé · 15 years ago
  84. 4f24767 proxy the __exit__ call by Benjamin Peterson · 15 years ago
  85. 7e2801d Merged revisions 73379,73388,73507,73722 via svnmerge from by Benjamin Peterson · 15 years ago
  86. 4d3f18f fix a few cases where automated fail -> assert translation messed up by Benjamin Peterson · 15 years ago
  87. 6b0032f use assert* methods in test_unittest by Benjamin Peterson · 15 years ago
  88. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 15 years ago
  89. 31f42ab provide a dummy __exit__ on windows by Benjamin Peterson · 15 years ago
  90. 1b90efb Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes in processes by Jesse Noller · 15 years ago
  91. 5dfc7f9 Issue 6370: Performance issue with collections.Counter(). by Raymond Hettinger · 15 years ago
  92. 3fbcc60 Fixed 6365: wrong inplace location for build_ext if the extension had dots by Tarek Ziadé · 15 years ago
  93. 79c3bd8 Backport fix for buglet from py3k by Antoine Pitrou · 15 years ago
  94. e007860 http://bugs.python.org/issue6267 Cumulative patch to http and xmlrpc by Kristján Valur Jónsson · 15 years ago
  95. 552e7a7 return locals and cells in get_locals() not bound globals, though by Benjamin Peterson · 15 years ago
  96. a4c6229 Remove stray pychecker directive. by Georg Brandl · 15 years ago
  97. 2662733 Fixes the last problem mentioned in issue1202. by Gregory P. Smith · 15 years ago
  98. 595f7a5 #2016 Fix a crash in function call when the **kwargs dictionary is mutated by Amaury Forgeot d'Arc · 15 years ago
  99. f1d11ef http://bugs.python.org/issue6192 by Kristján Valur Jónsson · 15 years ago
  100. 14fc673 Remove the ipaddr module per discussion on python-dev by Amaury Forgeot d'Arc · 15 years ago