1. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 15 years ago
  2. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 15 years ago
  3. 176a56c make class skipping decorators the same as skipping every test of the class by Benjamin Peterson · 15 years ago
  4. 0b09c42 Issue #6050: Don't fail extracting a directory from a zipfile if by Martin v. Löwis · 15 years ago
  5. 53b578e Issue #6065: Do not try to build a version-independent by Martin v. Löwis · 15 years ago
  6. d49e375 Issue #1309352: fcntl now converts its third arguments to a C `long` rather by Antoine Pitrou · 15 years ago
  7. e266f25 Fixed Issue1424152, urllib2 fails with HTTPS over Proxy. by Senthil Kumaran · 15 years ago
  8. 3724d6c Add smtplib test from issue 5259. by R. David Murray · 15 years ago
  9. f3bd687 Issue #3877: skip a test_fileio subtest on all BSDs, not only FreeBSD by Antoine Pitrou · 15 years ago
  10. 4b94b19 Issue 6089: str.format raises SystemError. by Eric Smith · 15 years ago
  11. 8254d39 Fix spelling left over from testing. by R. David Murray · 15 years ago
  12. 812e1c8 Don't be so wordy in requires('network') in case other tests by R. David Murray · 15 years ago
  13. ad3058e Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns by R. David Murray · 15 years ago
  14. aafd6b8 fixed encoding by Tarek Ziadé · 15 years ago
  15. 739aa36 don't use subprocess.call with PIPEs as the child can fill the pipe buf and by Philip Jenvey · 15 years ago
  16. a50af06 Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in TestCase subclasses. Issue 6072. by Michael Foord · 15 years ago
  17. a4e0efa Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72803. by Mark Dickinson · 15 years ago
  18. c8d30fe Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of by Jeffrey Yasskin · 15 years ago
  19. 1ef9c83 Issue 6066: POP_MARK was not in pickle protocol 0. by Collin Winter · 15 years ago
  20. 7d7127d fixed the 'package' option of build_ext by Tarek Ziadé · 15 years ago
  21. f03c42f Issue 6032: fix refleaks in test_urllib2_localnet. by Collin Winter · 15 years ago
  22. 61328ee While I was modifying test_trace, it threw an exception when I accidentally by Jeffrey Yasskin · 15 years ago
  23. fceb5d4 Issue 6037: MutableSequence.__iadd__ should return self. by Raymond Hettinger · 15 years ago
  24. 07bbfcc Fixed #6053 - win32 fixes for distutils tests by Tarek Ziadé · 15 years ago
  25. 6deb574 working with relative paths to avoid tar warnings on absolute paths by Tarek Ziadé · 15 years ago
  26. fcc7f03 Fixed the library extension when distutils build_ext is used inplace by Tarek Ziadé · 15 years ago
  27. 6dd6b61 fixed the test name by Tarek Ziadé · 15 years ago
  28. 6f826ed pep8-fied distutils.archive_util + added minimum test coverage by Tarek Ziadé · 15 years ago
  29. 513a8b7 pep8-fied distutils.dir_util by Tarek Ziadé · 15 years ago
  30. 294c9d9 removed sys.platform == 'mac' usage in distutils.dir_util by Tarek Ziadé · 15 years ago
  31. 016828d removed sys.platform == 'mac' support in distutils.dist.parse_command_line and improved test coverage by Tarek Ziadé · 15 years ago
  32. 8d252e4 not running this test with MSVC6 by Tarek Ziadé · 15 years ago
  33. a27dbc6 completely ignore old-style stuff for type checking overloading by Benjamin Peterson · 15 years ago
  34. fb6fb06 properly lookup __instancecheck__ and __subclasscheck__ by Benjamin Peterson · 15 years ago
  35. 757b3c9 use skipTest() by Benjamin Peterson · 15 years ago
  36. ae6acfc pep8-fied distutils.dist module by Tarek Ziadé · 15 years ago
  37. cb76804 #6041: sdist and register now use the check command. No more duplicate code for metadata checking by Tarek Ziadé · 15 years ago
  38. f541378 Fix bootstrapping by removing uses of the copy module in distutils by Antoine Pitrou · 15 years ago
  39. 775fd66 Issue #2116: Weak references and weak dictionaries now support copy()ing and deepcopy()ing. by Antoine Pitrou · 15 years ago
  40. 52035a0 Issue #1655: Make imaplib IPv6-capable. Patch by Derek Morr. by Antoine Pitrou · 15 years ago
  41. 0f48974 Issue 6024: make regrtest.py promote refleaks to test failures. by Collin Winter · 15 years ago
  42. 0db3cd6 a useful decorator for cleaning up threads by Benjamin Peterson · 15 years ago
  43. 92d102b prevent refleaks from threads by Benjamin Peterson · 15 years ago
  44. eed30d8 Issue #1664: Make nntplib IPv6-capable. Patch by Derek Morr. by Antoine Pitrou · 15 years ago
  45. cbb4f9e #6022 fixed test_get_outputs so it doesn't leaves a test file in the cwd by Tarek Ziadé · 15 years ago
  46. 8785554 Fix test failure on Windows, and add skip check if even unicodedata by R. David Murray · 15 years ago
  47. 8953913 pep8-fied distutils.command.sdist + more tests by Tarek Ziadé · 15 years ago
  48. 064a768 more test coverage for distutils sdist command by Tarek Ziadé · 15 years ago
  49. d547144 adding void to the c function by Tarek Ziadé · 15 years ago
  50. 1652410 added an inifoo in the C file, to avoid a warning by the MSVC9 linker by Tarek Ziadé · 15 years ago
  51. 996ba02 Issue #4050: inspect.findsource/getsource now raise an IOError if the 'source' by R. David Murray · 15 years ago
  52. e9a2b8a the compiler attribute is used in setup.py; can't rename by Benjamin Peterson · 15 years ago
  53. 972480d fixed #5977: distutils build_ext.get_outputs was not using the inplace option by Tarek Ziadé · 15 years ago
  54. f596a51 Better fix for modules using unittest.main(). Fixes regression caused by commit for issue 5995. Michael Foord by Michael Foord · 15 years ago
  55. 7df82c9 Fix to restore command line behaviour for test modules using unittest.main(). Regression caused by issue 5995. Michael by Michael Foord · 15 years ago
  56. 4ba25c2 removing the assert statement so the code works when Python is run with -O by Tarek Ziadé · 15 years ago
  57. 5d31e05 Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes by Michael Foord · 15 years ago
  58. b1d4585 Issue #5981: Fix some float.fromhex bugs related to inf and nan handling. by Mark Dickinson · 15 years ago
  59. 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é · 15 years ago
  60. 2bb084e fixed test_build_ext for win32 by Tarek Ziadé · 15 years ago
  61. e1577fb use isinstance by Benjamin Peterson · 15 years ago
  62. e3f68a1 fixed test for all platforms by Tarek Ziadé · 15 years ago
  63. 450ca11 now using EnvironGuard everywhere by Tarek Ziadé · 15 years ago
  64. d35f2a3 refactored test_sysconfig so it uses test.test_support.EnvironmentVarGuard by Tarek Ziadé · 15 years ago
  65. 234ab8f Added tests form install_lib and pep8-fied the module by Tarek Ziadé · 15 years ago
  66. d5d8342 fixed #5984 and improved test coverage by Tarek Ziadé · 15 years ago
  67. b91e8ed make sure files are closed using the with statement by Benjamin Peterson · 15 years ago
  68. 14c7bc2 close file explicitly by Benjamin Peterson · 15 years ago
  69. 784d455 *sigh* deal with instances correctly by Benjamin Peterson · 15 years ago
  70. af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 15 years ago
  71. f9b01fe Issue #5971: StreamHandler.handleError now swallows IOErrors which occur when trying to print a traceback. by Vinay Sajip · 15 years ago
  72. 812d771 #5976: fixed distutils test_check_environ by Tarek Ziadé · 15 years ago
  73. 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é · 15 years ago
  74. 809e225 lookup __reversed__ correctly as a special method by Benjamin Peterson · 15 years ago
  75. 84ad84e Merged revisions 72491-72493 via svnmerge from by Benjamin Peterson · 15 years ago
  76. 5edb1a1 Fix an off by one error on negative indexs to __getitem__ by Gregory P. Smith · 15 years ago
  77. 1aa4700 PyCode_NewEmpty: by Jeffrey Yasskin · 15 years ago
  78. db7ebcf fix this test by Benjamin Peterson · 15 years ago
  79. b87b334 Update the Windows locale mapping with the ones introduced with Vista. by Jeroen Ruigrok van der Werven · 15 years ago
  80. 51133d4 Add ISO-8859-16. by Jeroen Ruigrok van der Werven · 15 years ago
  81. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 15 years ago
  82. d846f1d #4351: more appropriate DeprecationWarning stacklevels by Philip Jenvey · 15 years ago
  83. 6f99778 fixed AR/ARFLAGS values in test_sysconfig by Tarek Ziadé · 15 years ago
  84. 99f660a Fixed #5941: added ARFLAGS for the archiver command. by Tarek Ziadé · 15 years ago
  85. ff748cd removed remaining spaces by Tarek Ziadé · 15 years ago
  86. f7e7bab Pre-opened test file needs to be opened in binary mode. by R. David Murray · 15 years ago
  87. 8fd522f Issue5955: aifc's close method did not close the file it wrapped, by R. David Murray · 15 years ago
  88. 0258811 actually close files instead of leaving it to the gc #5955 by Benjamin Peterson · 15 years ago
  89. a7fb408 Issue 3739: The unicode-internal encoder now reports the number of *characters* by Walter Dörwald · 15 years ago
  90. c924b3d Be more explicit about the error we are catching. by Jeroen Ruigrok van der Werven · 15 years ago
  91. 56342d5 removed string.split usage by Tarek Ziadé · 15 years ago
  92. ccf608c more build_clib cleanup + test coverage by Tarek Ziadé · 15 years ago
  93. b04a057 pep8-fied build_clib module : it is now similar to the one in 3.x by Tarek Ziadé · 15 years ago
  94. d2bb1a5 Added a test and cleaned check_library_list to be ready to fix #5940 by Tarek Ziadé · 15 years ago
  95. 041f465 Wrap getpreferredencoding()'s use of setlocale in a try/except to prevent by Jeroen Ruigrok van der Werven · 15 years ago
  96. eaeb4c6 Merged revisions 68503,68507,68694,69054,69673,69679-69681,70991,70999,71003,71695 via svnmerge from by Benjamin Peterson · 15 years ago
  97. a57773e Fix Issue #4875: find_library can return directories instead of files (on win32) by Thomas Heller · 15 years ago
  98. 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 · 15 years ago
  99. 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 · 15 years ago
  100. 5815220 Fix overlong lines. by Georg Brandl · 15 years ago