1. 1bd9b5e added test coverage for distutils.dep_util, and cleaned up the module by Tarek Ziadé · 16 years ago
  2. 9fa9a0d Fix an issue with the detection of a non-existing SDK by Ronald Oussoren · 16 years ago
  3. a5fd24e Add a reverse() method to collections.deque(). by Raymond Hettinger · 16 years ago
  4. 0b3263b Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) by Raymond Hettinger · 16 years ago
  5. d4e31a4 Skip new imaplib SSL tests if ssl is not available. by R. David Murray · 16 years ago
  6. 93321f3 Issue 5949: fixed IMAP4_SSL hang when the IMAP server response is by R. David Murray · 16 years ago
  7. 29dcdab Make test_pipes a little bit more robust. by Antoine Pitrou · 16 years ago
  8. ca173e2 Fix transient refleaks in test_urllib. Thanks to Florent Xicluna. by Antoine Pitrou · 16 years ago
  9. 8c54e78 Fix the transient refleaks in test_zipimport_support. by Antoine Pitrou · 16 years ago
  10. 187177f Issue #6986: Fix crash in the JSON C accelerator when called with the by Antoine Pitrou · 16 years ago
  11. 4b7f943 removed the usage of rfc822 in favor of email.message.Message by Tarek Ziadé · 16 years ago
  12. a939ecd Issue #7457: added a read_pkg_file method to distutils.dist.DistributionMetadata so we can read back PKG-INFO files by Tarek Ziadé · 16 years ago
  13. a4a04d1 fix test_parser from tokenizer tweak by Benjamin Peterson · 16 years ago
  14. bd1094a logging: Improved support for SMTP over TLS. by Vinay Sajip · 16 years ago
  15. 4830566 logging: Added optional 'secure' parameter to SMTPHandler. by Vinay Sajip · 16 years ago
  16. 4f38317 Fixed #1923: make sure we don't strip meaningful whitespace in PKG-INFO Description field by Tarek Ziadé · 16 years ago
  17. d78cec5 bump version to 2.7a1 by Benjamin Peterson · 16 years ago
  18. c0321aa regenerate pydoc_topics by Benjamin Peterson · 16 years ago
  19. 820b0ea Issue 7431: use TESTFN in test_linecache instead of trying to create a by R. David Murray · 16 years ago
  20. c218a2f Issue #4120: Drop reference to CRT from manifest when building by Martin v. Löwis · 16 years ago
  21. 0299d0d actually close files by Philip Jenvey · 16 years ago
  22. 30b3b35 Issue #7333: The `posix` module gains an `initgroups()` function providing by Antoine Pitrou · 16 years ago
  23. f2bf0d2 Issue #4482: Add tests for special float value formatting. by Eric Smith · 16 years ago
  24. d728871 #7419: Fix a crash on Windows in locale.setlocale() when the category by Amaury Forgeot d'Arc · 16 years ago
  25. e09f45a Issue 7410: deepcopy of itertools.count resets the count by Raymond Hettinger · 16 years ago
  26. d46430b now that deepcopy can handle instance methods, this hack can be removed #7409 by Benjamin Peterson · 16 years ago
  27. a5076a2 Fixed #7408: dropped group ownership checking because it relies on os-specific rules by Tarek Ziadé · 16 years ago
  28. c4ab833 Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson. by Eric Smith · 16 years ago
  29. d16f57b Issue #1515: Enable use of deepcopy() with instance methods. Patch by Robert Collins. by Antoine Pitrou · 16 years ago
  30. 01801d1 Issue #7403: Fixed possible race condition in lock creation. by Vinay Sajip · 16 years ago
  31. 50ea456 Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. by Martin v. Löwis · 16 years ago
  32. acbe3bd Issue #6845: Add restart support for binary upload in ftplib. The by Antoine Pitrou · 16 years ago
  33. 2dab865 When open_urlresource() fails, HTTPException is another possible error by Antoine Pitrou · 16 years ago
  34. bcfaf80 Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning by Antoine Pitrou · 16 years ago
  35. 0d9f61a Add mktime_tz to __all__. It's documented as being available in email.utils. by Barry Warsaw · 16 years ago
  36. 42d26d9 Merged revisions 76160-76161,76250,76252,76447,76506 via svnmerge from by Benjamin Peterson · 16 years ago
  37. 2ed8813 logging: Issue 6615: Changed handler prepend to append. by Vinay Sajip · 16 years ago
  38. 17e94e0 logging: made _handlers a WeakValueDictionary. by Vinay Sajip · 16 years ago
  39. c470d68 Issue #6615: logging: Used weak references in internal handler list. Thanks to flox (Florent Xicluna) for the patch. by Vinay Sajip · 16 years ago
  40. 8b2d713 Issue 7128: Removed reference to the non-existent copyreg module. by Alexandre Vassalotti · 16 years ago
  41. 1d2c16d Made logging classes new-style and added name property to handlers. by Vinay Sajip · 16 years ago
  42. 3e53549 Issue #7117: Update float formatting testcases to match those in py3k. by Mark Dickinson · 16 years ago
  43. 9a03f2f comment out test added in r76438, which caused refleaks by Jesse Noller · 16 years ago
  44. bce7837 round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this. by Mark Dickinson · 16 years ago
  45. 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 16 years ago
  46. 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 16 years ago
  47. 5c456e6 Fix for issue1488943 - difflib.Differ() doesn't always add hints for tab by Senthil Kumaran · 16 years ago
  48. e13dc3e Issue #7379: Fix incorrect doctest for Fraction.limit_denominator. by Mark Dickinson · 16 years ago
  49. 12adc65 Add a testcase that checks if the TarFile constructor successfully by Lars Gustäbel · 16 years ago
  50. dd866d5 Issue #6123: Fix opening empty archives and files. by Lars Gustäbel · 16 years ago
  51. 814d02d issue6615: Additional test for logging support in multiprocessing by Jesse Noller · 16 years ago
  52. 7bdd8d9 revert unintended change to multiprocessing/queues.py by Jesse Noller · 16 years ago
  53. 6c37674 issue5738: The distribution example was confusing, and out of date. It's too large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing. by Jesse Noller · 16 years ago
  54. c4920e8 Issue #7272: Add configure test to detect whether sem_open works by Mark Dickinson · 16 years ago
  55. 246ec33 avoid doing an uneeded import in a function by Benjamin Peterson · 16 years ago
  56. 99a5023 improve several corner cases related with argument names in parenthesis by Benjamin Peterson · 16 years ago
  57. 39de1fc dragfullwindows can have value 2 by Tarek Ziadé · 16 years ago
  58. dc3c239 #5037 proxy __unicode__ correctly by Benjamin Peterson · 16 years ago
  59. 355538e Issue #7341: Close the internal file object in the TarFile by Lars Gustäbel · 16 years ago
  60. bd15a06 Issue #7117, continued: Change round implementation to use the correctly-rounded by Mark Dickinson · 16 years ago
  61. 815521f Correctly escape arbitrary error message text in the runpy unit tests by Nick Coghlan · 16 years ago
  62. acccafc #7293: distutils.test_msvc9compiler now uses a key that exists on any fresh windows install by Tarek Ziadé · 16 years ago
  63. fab8be2 #1757126: fix typo with the cyrillic_asian alias by Philip Jenvey · 16 years ago
  64. 4b953ba Allow for backslashes in file paths passed to the regex engine by Nick Coghlan · 16 years ago
  65. 4976e32 Account for another cache when hunting ref leaks by Nick Coghlan · 16 years ago
  66. 11db64e Issue #7328: don't corrupt sys.path when running pydoc with the -m switch by Nick Coghlan · 16 years ago
  67. ccd5e02 Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP using by Antoine Pitrou · 16 years ago
  68. d5b34d4 Issue #4969: The mimetypes module now reads the MIME database from by Antoine Pitrou · 16 years ago
  69. 009ae86 Avoid signed overflow in some xrange calculations, and extend by Mark Dickinson · 16 years ago
  70. 20eb4f0 Fix for Issue4683 - urllib2.HTTPDigestAuthHandler fails on third hostname?. by Senthil Kumaran · 16 years ago
  71. 49868cb Issue #6816: expose the zipfile and directory execution mechanism to Python code via the runpy module. Also consolidated some script execution functionality in the test harness into a helper module and removed some implementation details from the runpy module documentation. by Nick Coghlan · 16 years ago
  72. 5120027 Addition of some details in the code comments. by Senthil Kumaran · 16 years ago
  73. 4653b8c Remove 'g' from regrtest getopt argument string, since there's no by R. David Murray · 16 years ago
  74. da82689 Issue 7324: add a sanity check to regrtest argument parsing to by R. David Murray · 16 years ago
  75. ca020bb Turn the bsddb replication startup timeout test into a by R. David Murray · 16 years ago
  76. 7f7eea6 Issue #7312 (new feature): Add a -F flag to run the selected tests in by R. David Murray · 16 years ago
  77. c562ca4 Issue #7318: multiprocessing now uses a timeout when it fails to establish by Antoine Pitrou · 16 years ago
  78. ccd6405 this main is much more useful by Benjamin Peterson · 16 years ago
  79. e36199b fix several compile() issues by translating newlines in the tokenizer by Benjamin Peterson · 16 years ago
  80. 310c9fe Issue #7295: Do not use a hardcoded file name in test_tarfile. by Antoine Pitrou · 16 years ago
  81. fdd5354 I got the relative magnitudes of the timeout increases reversed, so by R. David Murray · 16 years ago
  82. 5dff354 Fixing the NameError on Windows - issue1235 by Senthil Kumaran · 16 years ago
  83. 3a145a1 CGIHTTPRequestHandler.run_cgi() to use subprocess for Non Unix platforms. Fix by Senthil Kumaran · 16 years ago
  84. 47dded6 Backport micro-fix from the py3k svnmerge by Antoine Pitrou · 16 years ago
  85. 0734c63 Issue #7197: Allow unittest.TextTestRunner objects to be pickled and by Antoine Pitrou · 16 years ago
  86. c579b35 Add extra information to a test_signal failure message to aid diagnosis of buildbot failure. by Mark Dickinson · 16 years ago
  87. a8fd66d Issue #7251: Break out round tests for large values into a separate by Mark Dickinson · 16 years ago
  88. d7158d4 Issue #7282: Fix a memory leak when an RLock was used in a thread other by Antoine Pitrou · 16 years ago
  89. d19915e Issue 7294: Fixed URL in a comment. by Eric Smith · 16 years ago
  90. 0025330 Kill a small potential leak in test_threading. by Antoine Pitrou · 16 years ago
  91. e471b9b Some minor cleanups to private runpy code and docstrings by Nick Coghlan · 16 years ago
  92. 2733d88 Add test for runpy.run_module package execution and use something other than logging as the example of a non-executable package by Nick Coghlan · 16 years ago
  93. c98efe0 Issue #7270: Add some dedicated unit tests for multi-thread synchronization by Antoine Pitrou · 16 years ago
  94. 17f0f69 Merged revisions 76131 via svnmerge from by Benjamin Peterson · 16 years ago
  95. 3e376e5 Merged revisions 76127-76128 via svnmerge from by Benjamin Peterson · 16 years ago
  96. 9a57034 Merged revisions 76125 via svnmerge from by Benjamin Peterson · 16 years ago
  97. 99c160b Issue #7264: Fix a possible deadlock when deallocating thread-local objects by Antoine Pitrou · 16 years ago
  98. 2537e7a Increase the timeout in the bsddb3 replication test to allow by R. David Murray · 16 years ago
  99. 323b9da Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent by Antoine Pitrou · 16 years ago
  100. 4ac6b93 Make test_shutil clean up after itself by Antoine Pitrou · 16 years ago