1. 1fc0231 Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise an by Antoine Pitrou · 16 years ago
  2. 1d49926 Adds the ipaddr module to the standard library. Issue #3959. by Gregory P. Smith · 16 years ago
  3. 6733bed Make test.test_support.EnvironmentVarGuard behave like a dictionary. by Walter Dörwald · 16 years ago
  4. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
  5. 7c7250d make sure to close file by Benjamin Peterson · 16 years ago
  6. a9b4d47 make sure mode is removable while cleaning up test droppings by Benjamin Peterson · 16 years ago
  7. 9c6fc51 fix test_shutil on ZFS #5676 by Benjamin Peterson · 16 years ago
  8. 61a0d05 Backport some of the float formatting tests from py3k. by Mark Dickinson · 16 years ago
  9. 92fcc9c Issue #5864: format(1234.5, '.4') gives misleading result by Mark Dickinson · 16 years ago
  10. 0f457e5 More aifc tests. by R. David Murray · 16 years ago
  11. 971b1b1 Now that we've got a test_aifc, add a few tests. by R. David Murray · 16 years ago
  12. 25b4add Fix issue 2245. aifc now skips any chunk type it doesn't actually by R. David Murray · 16 years ago
  13. 4b965f6 Use test.test_support.EnvironmentVarGuard where tests change environment vars. by Walter Dörwald · 16 years ago
  14. 4c69da2 Fix typo. by Walter Dörwald · 16 years ago
  15. 99f2779 Issue #4971: Fix titlecase for characters that are their own by Martin v. Löwis · 16 years ago
  16. 068f065 Issue #5835, deprecate PyOS_ascii_formatd. by Eric Smith · 16 years ago
  17. 5d98ec7 Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in by Walter Dörwald · 16 years ago
  18. a145317 Issue #5837: Certain sequences of calls to set() and unset() for by Walter Dörwald · 16 years ago
  19. 0a6501b Fix typo in complex parsing code; expand tests. by Mark Dickinson · 16 years ago
  20. 5083dc5 fix a segfault when setting __class__ in __del__ #5283 by Benjamin Peterson · 16 years ago
  21. 0badeef Remove unnecessary double negative by Mark Dickinson · 16 years ago
  22. 6ab635a Issue #5593: Use more robust test for double-rounding in test_fsum. by Mark Dickinson · 16 years ago
  23. 4af8e74 Issue #5812: The two-argument form of the Fraction constructor by Mark Dickinson · 16 years ago
  24. 95bc980 Issue #5816: by Mark Dickinson · 16 years ago
  25. 8100bd8 Issue #5812: make Fraction('1e-6') valid. Backport of r71806. by Mark Dickinson · 16 years ago
  26. ebafbb7 Fixed issue 5782: formatting with commas didn't work if no specifier type code was given. by Eric Smith · 16 years ago
  27. 5533ff6 Issue 5354: Change API for import_fresh_module() to better support test_warnings use case (also fixes some bugs in the original implementation) by Nick Coghlan · 16 years ago
  28. aca19e6 Backport of some of the work in r71665 to trunk. This reworks much of by Eric Smith · 16 years ago
  29. 95fb46c Restore skips of posix and pty tests on Windows by calling the by R. David Murray · 16 years ago
  30. 7c2867f Fix for the Issue918368 - urllib doesn't correct server returned urls by Senthil Kumaran · 16 years ago
  31. a7e734f Nit: integer division should use //, not / by Mark Dickinson · 16 years ago
  32. 6736cf8 Issue #3166: Make long -> float (and int -> float) conversions by Mark Dickinson · 16 years ago
  33. accb3d0 move test to a more appropiate one by Benjamin Peterson · 16 years ago
  34. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 16 years ago
  35. 1bdf7e9 Issue #1869: Fix a couple of minor round() issues. by Mark Dickinson · 16 years ago
  36. 74f0450 Issue #5768: Change to Unicode output logic and test case for same. by Vinay Sajip · 16 years ago
  37. 99d36f1 call __float__ on str subclasses #5759 by Benjamin Peterson · 16 years ago
  38. dcad046 Adjust test_asyncore to account for intentional asyncore behavior change by R. David Murray · 16 years ago
  39. 457fefc remove useless import by Benjamin Peterson · 16 years ago
  40. 21cf5ee #5741: dont disallow double percent signs in SafeConfigParser.set() keys. by Georg Brandl · 16 years ago
  41. 5331d4b Make test_asyncore tests match code changes introduced by the by R. David Murray · 16 years ago
  42. cd2e704 Issue 5354: Provide a standardised testing mechanism for doing fresh imports of modules, including the ability to block extension modules in order to test the pure Python fallbacks by Nick Coghlan · 16 years ago
  43. 0374a82 Issue #2170: refactored xml.dom.minidom.normalize, increasing both by R. David Murray · 16 years ago
  44. f8089c7 Issue 5665: add more pickling tests. by Collin Winter · 16 years ago
  45. 7f9bb91 - Make timing assertions very generous (a la test_timeout.py) by Jack Diederich · 16 years ago
  46. 3b2312e eliminate more race conditions in telnetlib tests by Jack Diederich · 16 years ago
  47. 14bf0a0 Issue #5695: Minor tweak to improve the code as suggested by Brett Cannon and as implemented in the Py3K branch. by Vinay Sajip · 16 years ago
  48. dda7b19 revert unrelated change to test_telnetlib by Benjamin Peterson · 16 years ago
  49. a1b821c fix since difference formating of SyntaxErrors by Benjamin Peterson · 16 years ago
  50. 52b9620 fix syntax tests after formatting change by Benjamin Peterson · 16 years ago
  51. 923ba36 - Issue #2254: Fix CGIHTTPServer information disclosure. Relative paths are by Gregory P. Smith · 16 years ago
  52. 183028e test the telnetlib.Telnet interface more thoroughly by Jack Diederich · 16 years ago
  53. 6d30793 Fixes issue5705: os.setuid() and friends did not accept the same range of by Gregory P. Smith · 16 years ago
  54. f2dfef1 Adding assertIs and assertIsNot methods to unittest.TestCase by Michael Foord · 16 years ago
  55. 3f0ef20 #5471: fix expanduser() for $HOME set to "/". by Georg Brandl · 16 years ago
  56. dc4a771 #1326077: fix traceback formatting of SyntaxErrors. This fixes two differences with formatting coming from Python: a) the reproduction of location details in the error message if no line text is given, b) the prefixing of the last line by one space. by Georg Brandl · 16 years ago
  57. 1e566ce Issue #5695: Moved logging.captureWarnings() call inside with statement in WarningsTest.test_warnings. by Vinay Sajip · 16 years ago
  58. 772033f No behavior change. by Hirokazu Yamamoto · 16 years ago
  59. 756ab67 Have namedtuple's field renamer assign names that by Raymond Hettinger · 16 years ago
  60. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 16 years ago
  61. 48e3fd2 sys.long_info attributes should be ints, not longs by Mark Dickinson · 16 years ago
  62. 52720c5 Add missing iteritems() call to the for loop in mailbox.MH.get_message(). by R. David Murray · 16 years ago
  63. e2942d0 Store the functions in the _type_equality_funcs as wrapped objects that are deep copyable. by Michael Foord · 16 years ago
  64. 7152f6d Add custom initializer argument to multiprocess.Manager*, courtesy of lekma by Jesse Noller · 16 years ago
  65. 345b2fe Better exception messages for unittest assert methods. by Michael Foord · 16 years ago
  66. c730a6a Fixing the issue4860. Escaping embedded '"' character in js_output() method of Morsel. by Senthil Kumaran · 16 years ago
  67. 3633c4f handle SEEK_ constants in test_io by Benjamin Peterson · 16 years ago
  68. 3864459 Add tests checking the CSV module's ability to handle by R. David Murray · 16 years ago
  69. 20d114c Fix for issue5040. Adding test for Content-Length by Senthil Kumaran · 16 years ago
  70. 2ecd3c3 bounds check arguments to mmap.move(). All of them. Really. by Jack Diederich · 16 years ago
  71. ce3d221 test_warnings ironically had a single test that was not protecting the warnings by Brett Cannon · 16 years ago
  72. 2da4d62 test_logging was blindly clearing the warnings filter. This caused by Brett Cannon · 16 years ago
  73. 66c4a6b Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 16 years ago
  74. 15ba4da _warnings was importing itself to get an attribute. That's bad if warnings gets by Brett Cannon · 16 years ago
  75. 61fce38 Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH. by Georg Brandl · 16 years ago
  76. 02cb0eb Fix multiprocessing.event to match the new threading.Event API by Jesse Noller · 16 years ago
  77. a83da35 Fix issue 2522. locale.format now checks that it is passed by R. David Murray · 16 years ago
  78. bb94d43 Fix for failing asyncore tests. by Josiah Carlson · 16 years ago
  79. d8fb6ac Issue #5635: Fix running test_sys with tracing enabled. by Georg Brandl · 16 years ago
  80. d60c29e #5228: add pickle support to functools.partial by Jack Diederich · 16 years ago
  81. 840ac92 Fix Windows test skip error revealed by buildbot. Also a comment spelling by R. David Murray · 16 years ago
  82. 0c7b2c9 #1651995: fix _convert_ref for non-ASCII characters. by Georg Brandl · 16 years ago
  83. d906ea6 fix Thread.ident when it is the main thread or a dummy thread #5632 by Benjamin Peterson · 16 years ago
  84. ef660e8 #1674032: return value of flag from Event.wait(). OKed by Guido. by Georg Brandl · 16 years ago
  85. 1d7d532 Issue #5387: Fixed mmap.move crash by integer overflow. (take2) by Hirokazu Yamamoto · 16 years ago
  86. 612f1d5 Remove the regrtest check that turns any ImportError into a skipped test. by R. David Murray · 16 years ago
  87. bdeacba Improve test_support.import_module docstring, remove by R. David Murray · 16 years ago
  88. 73fba69 Delete out-of-date and little-known README from the test by R. David Murray · 16 years ago
  89. 7558d57 Rename the actual method definitions to the official assertFoo names. by Gregory P. Smith · 16 years ago
  90. 597ebab A few more test skips via import_module, and change import_module to by R. David Murray · 16 years ago
  91. 2839985 The unittest.TestCase.assertEqual() now displays the differences in lists, by Gregory P. Smith · 16 years ago
  92. 88f1c04 Global statements from one function leaked into parallel functions. by Jeremy Hylton · 16 years ago
  93. 1c157ea Add is_declared_global() which distinguishes between implicit and by Jeremy Hylton · 16 years ago
  94. 9d2ee5d Issue #5387: Fixed mmap.move crash by integer overflow. by Hirokazu Yamamoto · 16 years ago
  95. 82eb590 merge in patch from tim golden to fix contextmanager support for mp.Lock() by Jesse Noller · 16 years ago
  96. d7bf8a5 Actually suppress warnings in test_at_least_import_untested_modules by R. David Murray · 16 years ago
  97. 3db8a34 Change more tests to use import_module for the modules that by R. David Murray · 16 years ago
  98. 019ce77 finalize the queue prior to shutdown by Jesse Noller · 16 years ago
  99. 5e95e76 Fix for bugs: Issue4675 and Issue4962. by Senthil Kumaran · 16 years ago
  100. e7c9e09 Remove references to test_socket_ssl which was deleted in trunk by R. David Murray · 16 years ago