1. 52035a0 Issue #1655: Make imaplib IPv6-capable. Patch by Derek Morr. by Antoine Pitrou · 16 years ago
  2. 490096e Fix example output for doctest-like demos. by Georg Brandl · 16 years ago
  3. 0f48974 Issue 6024: make regrtest.py promote refleaks to test failures. by Collin Winter · 16 years ago
  4. 0db3cd6 a useful decorator for cleaning up threads by Benjamin Peterson · 16 years ago
  5. 92d102b prevent refleaks from threads by Benjamin Peterson · 16 years ago
  6. 42b5bcf Issue #5918: Fix a crash in the parser module. by Antoine Pitrou · 16 years ago
  7. eed30d8 Issue #1664: Make nntplib IPv6-capable. Patch by Derek Morr. by Antoine Pitrou · 16 years ago
  8. cbb4f9e #6022 fixed test_get_outputs so it doesn't leaves a test file in the cwd by Tarek Ziadé · 16 years ago
  9. 8785554 Fix test failure on Windows, and add skip check if even unicodedata by R. David Murray · 16 years ago
  10. 8953913 pep8-fied distutils.command.sdist + more tests by Tarek Ziadé · 16 years ago
  11. 064a768 more test coverage for distutils sdist command by Tarek Ziadé · 16 years ago
  12. 51d06ab importlib.import_module is better these days by Benjamin Peterson · 16 years ago
  13. d547144 adding void to the c function by Tarek Ziadé · 16 years ago
  14. 1652410 added an inifoo in the C file, to avoid a warning by the MSVC9 linker by Tarek Ziadé · 16 years ago
  15. 996ba02 Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source' by R. David Murray · 16 years ago
  16. 525cffc Move news item to correct section, remove spurious 'see below' from docstring. by R. David Murray · 16 years ago
  17. a3ec697 Issue 5994: add docstrings to marshal. by R. David Murray · 16 years ago
  18. e9a2b8a the compiler attribute is used in setup.py; can't rename by Benjamin Peterson · 16 years ago
  19. 972480d fixed #5977: distutils build_ext.get_outputs was not using the inplace option by Tarek Ziadé · 16 years ago
  20. f596a51 Better fix for modules using unittest.main(). Fixes regression caused by commit for issue 5995. Michael Foord by Michael Foord · 16 years ago
  21. 7df82c9 Fix to restore command line behaviour for test modules using unittest.main(). Regression caused by issue 5995. Michael by Michael Foord · 16 years ago
  22. 4ba25c2 removing the assert statement so the code works when Python is run with -O by Tarek Ziadé · 16 years ago
  23. 7118954 Make it clear up front that shelve only records changes by R. David Murray · 16 years ago
  24. 5471a77 Add missing # to NEWS by Michael Foord · 16 years ago
  25. 5d31e05 Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes by Michael Foord · 16 years ago
  26. b1d4585 Issue #5981: Fix some float.fromhex bugs related to inf and nan handling. by Mark Dickinson · 16 years ago
  27. 68e27eb distutils.test_build_clib added a new line at the end of the file, to avoid a warning with some compilers by Tarek Ziadé · 16 years ago
  28. 3dabc10 sys.setdefaultencoding() strikes me as a bad example by Benjamin Peterson · 16 years ago
  29. 2bb084e fixed test_build_ext for win32 by Tarek Ziadé · 16 years ago
  30. e1577fb use isinstance by Benjamin Peterson · 16 years ago
  31. e3f68a1 fixed test for all platforms by Tarek Ziadé · 16 years ago
  32. 450ca11 now using EnvironGuard everywhere by Tarek Ziadé · 16 years ago
  33. d35f2a3 refactored test_sysconfig so it uses test.test_support.EnvironmentVarGuard by Tarek Ziadé · 16 years ago
  34. 234ab8f Added tests form install_lib and pep8-fied the module by Tarek Ziadé · 16 years ago
  35. d5d8342 fixed #5984 and improved test coverage by Tarek Ziadé · 16 years ago
  36. b91e8ed make sure files are closed using the with statement by Benjamin Peterson · 16 years ago
  37. 14c7bc2 close file explicitly by Benjamin Peterson · 16 years ago
  38. ceea163 clear error state properly by Benjamin Peterson · 16 years ago
  39. 4c1fe51 don't ignore exceptions from _PyObject_LengthHint by Benjamin Peterson · 16 years ago
  40. a7dc949 ignore AttributeErrors for classic classes by Benjamin Peterson · 16 years ago
  41. 784d455 *sigh* deal with instances correctly by Benjamin Peterson · 16 years ago
  42. 0a32f9c can't handle classic classes here by Benjamin Peterson · 16 years ago
  43. 3f3d36b ignore classic classes by Benjamin Peterson · 16 years ago
  44. af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 16 years ago
  45. f9b01fe Issue #5971: StreamHandler.handleError now swallows IOErrors which occur when trying to print a traceback. by Vinay Sajip · 16 years ago
  46. 812d771 #5976: fixed distutils test_check_environ by Tarek Ziadé · 16 years ago
  47. e2be83d Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used by Tarek Ziadé · 16 years ago
  48. 809e225 lookup __reversed__ correctly as a special method by Benjamin Peterson · 16 years ago
  49. 84ad84e Merged revisions 72491-72493 via svnmerge from by Benjamin Peterson · 16 years ago
  50. 5edb1a1 Fix an off by one error on negative indexs to __getitem__ by Gregory P. Smith · 16 years ago
  51. f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 16 years ago
  52. 1aa4700 PyCode_NewEmpty: by Jeffrey Yasskin · 16 years ago
  53. 083d1f9 Issue #5933: Fix gcc -Wextra compiler warnings (and remove some by Mark Dickinson · 16 years ago
  54. fd1ee7a Add a file that contains diffs between offical libffi files and the by Thomas Heller · 16 years ago
  55. db7ebcf fix this test by Benjamin Peterson · 16 years ago
  56. b87b334 Update the Windows locale mapping with the ones introduced with Vista. by Jeroen Ruigrok van der Werven · 16 years ago
  57. 51133d4 Add ISO-8859-16. by Jeroen Ruigrok van der Werven · 16 years ago
  58. d8282ee Fix name. by Georg Brandl · 16 years ago
  59. 3a9930d this is now a bound method by Benjamin Peterson · 16 years ago
  60. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 16 years ago
  61. d846f1d #4351: more appropriate DeprecationWarning stacklevels by Philip Jenvey · 16 years ago
  62. 6f99778 fixed AR/ARFLAGS values in test_sysconfig by Tarek Ziadé · 16 years ago
  63. 3a6e886 run autoconf (step forgotten in r72445) by Tarek Ziadé · 16 years ago
  64. 99f660a Fixed #5941: added ARFLAGS for the archiver command. by Tarek Ziadé · 16 years ago
  65. ff748cd removed remaining spaces by Tarek Ziadé · 16 years ago
  66. 7523234 Fixed wording for formatting integers: precision is not allowed. by Eric Smith · 16 years ago
  67. f7e7bab Pre-opened test file needs to be opened in binary mode. by R. David Murray · 16 years ago
  68. d3bf34c News item for Issue5955. by R. David Murray · 16 years ago
  69. 8fd522f Issue5955: aifc's close method did not close the file it wrapped, by R. David Murray · 16 years ago
  70. 0258811 actually close files instead of leaving it to the gc #5955 by Benjamin Peterson · 16 years ago
  71. dd26681 Revert inappropriate doc change. by R. David Murray · 16 years ago
  72. e202700 Document how to pass a 'decode' argument to get_payload when by R. David Murray · 16 years ago
  73. 1271662 Remove two dead links by Andrew M. Kuchling · 16 years ago
  74. 726ba8e Add NEWS entry about issue #3739. by Walter Dörwald · 16 years ago
  75. a7fb408 Issue 3739: The unicode-internal encoder now reports the number of *characters* by Walter Dörwald · 16 years ago
  76. c924b3d Be more explicit about the error we are catching. by Jeroen Ruigrok van der Werven · 16 years ago
  77. 56342d5 removed string.split usage by Tarek Ziadé · 16 years ago
  78. ccf608c more build_clib cleanup + test coverage by Tarek Ziadé · 16 years ago
  79. b04a057 pep8-fied build_clib module : it is now similar to the one in 3.x by Tarek Ziadé · 16 years ago
  80. d2bb1a5 Added a test and cleaned check_library_list to be ready to fix #5940 by Tarek Ziadé · 16 years ago
  81. 041f465 Wrap getpreferredencoding()'s use of setlocale in a try/except to prevent by Jeroen Ruigrok van der Werven · 16 years ago
  82. eaeb4c6 Merged revisions 68503,68507,68694,69054,69673,69679-69681,70991,70999,71003,71695 via svnmerge from by Benjamin Peterson · 16 years ago
  83. c6c1f96 tabify :( by Benjamin Peterson · 16 years ago
  84. 8dc74f4 Issue #5721: don't package Lib/test/README anymore. by Martin v. Löwis · 16 years ago
  85. a98c8e1 fix running test_capi with -R :: by Benjamin Peterson · 16 years ago
  86. a57773e Fix Issue #4875: find_library can return directories instead of files (on win32) by Thomas Heller · 16 years ago
  87. a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
  88. 929ab93 Issue #5933: Fix some gcc -Wextra warnings. Thanks Victor Stinner for by Mark Dickinson · 16 years ago
  89. 2c72420 Fixing issue5861 - test_urllib fails on windows. Agree to comment to have ':' in pathname2url as windows recognizes it. test_urllib passes now. by Senthil Kumaran · 16 years ago
  90. 588b54b Issue #5847: Remove -n switch on "Edit with IDLE" menu item. by Martin v. Löwis · 16 years ago
  91. cecdc9c Remove unused variable. by Georg Brandl · 16 years ago
  92. ba68a99 #5929: fix signedness warning. by Georg Brandl · 16 years ago
  93. 5815220 Fix overlong lines. by Georg Brandl · 16 years ago
  94. 4d4313d #5142: add module skipping feature to pdb. by Georg Brandl · 16 years ago
  95. e3869c4 Add a news entry for r72319. by Georg Brandl · 16 years ago
  96. 7c26d76 #1309567: fix linecache behavior of stripping subdirectories from paths when looking for relative filename matches. Also add a linecache test suite. by Georg Brandl · 16 years ago
  97. f71ba95 #5932: fix error return in _convertPyInt_AsSsize_t() conversion function. by Georg Brandl · 16 years ago
  98. ab538fc Update bdist_msi so that the generated MSIs for pure Python modules can install to any version of Python, like the generated EXEs from bdist_wininst. (Previously, you had to create a new MSI for each version of Python.) by Steven Bethard · 16 years ago
  99. 7c67b03 using sys._getframe(x), where x > 0 doesnt' work on IronPython by Benjamin Peterson · 16 years ago
  100. 7ba8e1c Fix issue 5890: (property subclass shadows __doc__ string) by inserting by R. David Murray · 16 years ago