1. 3eab6b3 Issue #17606: Fixed support of encoded byte strings in the XMLGenerator by Serhiy Storchaka · 12 years ago
  2. b3bd624 Back out patch for #1159051, which caused backwards compatibility problems. by Georg Brandl · 12 years ago
  3. 64949fa merge with 3.2 by Georg Brandl · 12 years ago
  4. c502df4 Issue #17915: Fix interoperability of xml.sax with file objects returned by by Georg Brandl · 12 years ago
  5. 93b061b Issue #1159051: Back out a fix for handling corrupted gzip files that by Georg Brandl · 12 years ago
  6. aa6f688 only close non-None files by Benjamin Peterson · 12 years ago
  7. ce82d57 #17809: fix a test failure in test_expanduser when $HOME has a trailing /. Patch by Kubilay Kocak. by Ezio Melotti · 12 years ago
  8. 263fab9 Issue #16601: Restarting iteration over tarfile no more continues from where by Serhiy Storchaka · 12 years ago
  9. 6bcc0f1 #17877: skip test if the Olson's TZ database is missing. by Ezio Melotti · 12 years ago
  10. dea2ec4 Fix a test to not use an assertion for something that could be by Brett Cannon · 12 years ago
  11. 28faf03 #7855: Add tests for ctypes/winreg for issues found in IronPython. Initial patch by Dino Viehland. by Ezio Melotti · 12 years ago
  12. 59115aa Issue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions. by Serhiy Storchaka · 12 years ago
  13. 9d0f772 Issue #15902: Fix imp.load_module() to accept None as a file when by Brett Cannon · 12 years ago
  14. b98dcc1 Issue #15535: Fix pickling of named tuples. by Raymond Hettinger · 12 years ago
  15. 8e596a7 #17802: Fix an UnboundLocalError in html.parser. Initial tests by Thomas Barlow. by Ezio Melotti · 12 years ago
  16. 81641d6 Issue #17712: Fix test_gdb failures on Ubuntu 13.04. by Antoine Pitrou · 12 years ago
  17. 7d11004 raise an ImportError (rather than fatal) when __import__ is not found in __builtins__ (closes #17867) by Benjamin Peterson · 12 years ago
  18. abac0a7 Added base64 module tests for non-binary files. by Serhiy Storchaka · 12 years ago
  19. 017523c Issue #17842. Added base64 module tests with bytearray arguments. by Serhiy Storchaka · 12 years ago
  20. ba2f8be Issue #17843: Remove bz2 test data that triggers antivirus warnings. by Georg Brandl · 12 years ago
  21. ce654f4 Issue #15535: Fix pickling of named tuples. by Georg Brandl · 12 years ago
  22. e1a1674 Issue #17835: Fix test_io when the default OS pipe buffer size is larger than one million bytes. by Antoine Pitrou · 12 years ago
  23. 20ea96f backported rev 79713 from 3.4, test_recursion_limit skipped for -O0 by Łukasz Langa · 12 years ago
  24. 326edfd Ensure that plistlib doesn't corrupt deeply nested datastructures by Ronald Oussoren · 12 years ago
  25. 4140fb5 #17065: Use process-unique key for winreg test. by R David Murray · 12 years ago
  26. 65f7a9e Remove duplicated tests. by Ezio Melotti · 12 years ago
  27. 1f7492c Isuse #17720: Fix APPENDS handling in the Python implementation of Unpickler by Alexandre Vassalotti · 12 years ago
  28. 3583761 #17413: make sure settrace funcs get passed exception instances for 'value'. by R David Murray · 12 years ago
  29. ab5ba79 #17790: test_set now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  30. 3e4a98b #17789: test_random now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  31. aaa5d1c #17779: test_osx_env now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  32. 409c313 Issue #17555: Fix ForkAwareThreadLock so that size of after fork by Richard Oudkerk · 12 years ago
  33. b38897f Fix issue #17707: multiprocessing.Queue's get() method does not block for short timeouts. by Giampaolo Rodola' · 12 years ago
  34. d13c008 #17766: test_iterlen now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  35. 20c08c8 Remove unused import. by Barry Warsaw · 12 years ago
  36. 618738b - Issue #17012: shutil.which() no longer fallbacks to the PATH environment by Barry Warsaw · 12 years ago
  37. 3034efd Issue #17710: Fix pickle raising a SystemError on bogus input. by Antoine Pitrou · 12 years ago
  38. f1465f0 Close #17731: Clean up properly in test_import by Nick Coghlan · 12 years ago
  39. 26dfaac9 #17341: Include name in re error message about invalid group name. by R David Murray · 12 years ago
  40. 839e5ea Issue #17702: use assertRaises() for the unit test by Victor Stinner · 12 years ago
  41. 6d10139 Close #17702: os.environ now raises KeyError with the original environment by Victor Stinner · 12 years ago
  42. c4e0d98 Close issue #16163: handle submodules in pkgutil.iter_importers by Nick Coghlan · 12 years ago
  43. 1d472b7 Closes #14462: allow any valid Python identifier in sre group names, as documented. by Georg Brandl · 12 years ago
  44. 6eea818 Fix pickling test in test_memoryio. by Alexandre Vassalotti · 12 years ago
  45. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 12 years ago
  46. b4fd468 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 12 years ago
  47. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 12 years ago
  48. eff6444 Fix whitespaces by Andrew Svetlov · 12 years ago
  49. a2dfc35 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 12 years ago
  50. 7b2c8bb Issue #16658: add missing return to HTTPConnection.send(). by Andrew Svetlov · 12 years ago
  51. c2ecac4 #17692: test_sqlite now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  52. 3836d70 #17690: test_time now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  53. f49581c normalize whitespace by Senthil Kumaran · 12 years ago
  54. 277e9090 #5609 - test_urllib coverage for url2pathname and pathname2url. Patch by Senthil Kumaran · 12 years ago
  55. cd514cf #12820: add tests for the xml.dom.minicompat module. Patch by John Chandler and Phil Connell. by Ezio Melotti · 12 years ago
  56. d281c73 #17648 - convert test_urllib2.py doctests to unittests by Senthil Kumaran · 12 years ago
  57. a6df938 Close #17666: Fix reading gzip files with an extra field. by Serhiy Storchaka · 12 years ago
  58. 7e69f00 Close #17666: Fix reading gzip files with an extra field. by Serhiy Storchaka · 12 years ago
  59. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 12 years ago
  60. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 12 years ago
  61. 0f38908 #17572: Avoid chained exceptions while passing bad directives to time.strptime(). Initial patch by Claudiu Popa. by Ezio Melotti · 12 years ago
  62. ed3a303 Close #6822: ftplib.FTP.storlines() expects a binary file, not a text file by Victor Stinner · 12 years ago
  63. 7a03e2d Issue #6419: Fix a test_kqueue failure on some BSD flavors. by Charles-Francois Natali · 12 years ago
  64. e5aefa4 Skip a test of an old API on ARM Linux that isn't supported by the OS. by Gregory P. Smith · 12 years ago
  65. 19aeb43 Issue #17435: Don't use mutable default values in Timer. by R David Murray · 12 years ago
  66. 1b14592 #17526: fix an IndexError raised while passing code without filename to inspect.findsource(). Initial patch by Tyler Doyle. by Ezio Melotti · 12 years ago
  67. 9098472 #17564: skip test_bad_address unless the tests are run with -unetwork/-uall. by Ezio Melotti · 12 years ago
  68. 28421c6 Issue #17540: Added style to Formatter configuration by dict. by Vinay Sajip · 12 years ago
  69. 93f756b Merge test_queue clean up from 3.2. by Ezio Melotti · 12 years ago
  70. 656c808 Clean up references to threads in test_queue. by Ezio Melotti · 12 years ago
  71. a1b9ed3 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 12 years ago
  72. a1ed539 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 12 years ago
  73. daa42c7 #17479: test_io now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  74. 9b862b9 Issue #17521: Merged fix from 3.2. by Vinay Sajip · 12 years ago
  75. 68b4cc8 Issue #17521: Corrected non-enabling of logger following two calls to fileConfig(). by Vinay Sajip · 12 years ago
  76. 340a4bb Issue #17508: Merged fix from 3.2. by Vinay Sajip · 12 years ago
  77. 3f885b5 Issue #17508: Handled out-of-order handler configuration correctly. by Vinay Sajip · 12 years ago
  78. 6bd5202 #5713: One more test_smtplib timing fix. by R David Murray · 12 years ago
  79. 54bd49d Merge: #5712: Preemptively fix some other possible timing issues. by R David Murray · 12 years ago
  80. 03b0116 #5712: Preemptively fix some other possible timing issues. by R David Murray · 12 years ago
  81. a686ed7 Merge: #5713: fix timing issue in smtplib tests. by R David Murray · 12 years ago
  82. 853c0f9 #5713: fix timing issue in smtplib tests. by R David Murray · 12 years ago
  83. f1a40b4 Merge: #5713: Handle 421 error codes during sendmail by closing the socket. by R David Murray · 12 years ago
  84. d312c74 #5713: Handle 421 error codes during sendmail by closing the socket. by R David Murray · 12 years ago
  85. a49178e #17493: merge with 3.2. by Ezio Melotti · 12 years ago
  86. 958f7ae #17493: re-enable a test on Windows. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  87. 91110f5 Use a larger amount of data for tests such as the interrupted_write by Gregory P. Smith · 12 years ago
  88. f47e77f #17471 - merge from 3.2 by Senthil Kumaran · 12 years ago
  89. 2a4d245 #17471 - Increasing the urllib.error test coverage. Bringing it to 100%. Based on patch contributed by Daniel Wozniak by Senthil Kumaran · 12 years ago
  90. d17ca23 #17471 - merge from 3.2 by Senthil Kumaran · 12 years ago
  91. 843fae9 #17471 - Improve urllib2 test coverage. Patch contributed by Daniel Wozniak by Senthil Kumaran · 12 years ago
  92. 52dfc74 #17476: make allmethods actually return all methods. by R David Murray · 12 years ago
  93. 9929bc5 #17476: make allmethods actually return all methods. by R David Murray · 12 years ago
  94. f0efea0 Issue #17463: Fix test discovery for test_pdb.py by Andrew Svetlov · 12 years ago
  95. f3a1b6e Merge #17448: Make test_sax skip if there are no xml parsers. by R David Murray · 12 years ago
  96. a846f5a #17448: Make test_sax skip if there are no xml parsers. by R David Murray · 12 years ago
  97. e5e7a7c #11420: merge with 3.2. by Ezio Melotti · 12 years ago
  98. c28f6fa #11420: make test suite pass with -B/DONTWRITEBYTECODE set. Initial patch by Thomas Wouters. by Ezio Melotti · 12 years ago
  99. b73ac54 Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware. by Terry Jan Reedy · 12 years ago
  100. 743c85a Issue # 10652: make tcl/tk tests run after __all__ test, patch by Zachary Ware. by Terry Jan Reedy · 12 years ago