1. 033a543 Issue #12057: Convert CJK encoding testcase BLOB into multiple text files by Victor Stinner · 13 years ago
  2. c77b931 Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas by Victor Stinner · 13 years ago
  3. d0e11ec Issue #10756: atexit normalizes the exception before displaying it. Patch by by Victor Stinner · 13 years ago
  4. 1161a9c Fix copy-paste mistake in new zlib test. by Nadeem Vawda · 13 years ago
  5. 0c3d96a Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. by Nadeem Vawda · 13 years ago
  6. dfbe159 Issue #6378: Further adjust idle.bat to start associated Python by Kurt B. Kaiser · 13 years ago
  7. 1b8a417 Issue #8650: Backport 64-bit safety fixes for compress() and decompress(). by Nadeem Vawda · 13 years ago
  8. 7619e88 Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail by Nadeem Vawda · 13 years ago
  9. fc778fd #7960: fix docstrings for captured_output and captured_stdout. by Ezio Melotti · 13 years ago
  10. 3c0d8a1 #5723: Improve json tests to be executed with and without accelerations. by Ezio Melotti · 13 years ago
  11. fec3ad1 Change import_fresh_module to work with packages. by Ezio Melotti · 13 years ago
  12. 7c40489 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  13. 0a42982 Issue #11896: Save on Close failed despite selecting "Yes" in dialog. by Kurt B. Kaiser · 13 years ago
  14. e147806 Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. by Kurt B. Kaiser · 13 years ago
  15. ba9c664 Issue #10419: Fix build_scripts command of distutils to handle correctly by Victor Stinner · 13 years ago
  16. 1367265 #12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  17. ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  18. f9756c2 Some more tests were incorrectly marked as C specific. by Ezio Melotti · 13 years ago
  19. 2f48d89 Stop trying to use _xmlplus in the xml module. Closes #11164. by Martin v. Löwis · 13 years ago
  20. 8269a44 #11910: Fix test_heapq to skip the C tests when _heapq is missing. by Ezio Melotti · 13 years ago
  21. 199e085 #11910: change import_fresh_module to return None when one of the "fresh" modules can not be imported. by Ezio Melotti · 13 years ago
  22. 262c582 put import_fresh_module in __all__ by Benjamin Peterson · 13 years ago
  23. 4d1cd0a Merge by Antoine Pitrou · 13 years ago
  24. c1d5206 Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath. by Antoine Pitrou · 13 years ago
  25. fde86ff merge by Giampaolo Rodola' · 13 years ago
  26. 0b5c21f #12002 - ftplib's abort() method raises TypeError by Giampaolo Rodola' · 13 years ago
  27. 63e4230 #5421: add tests. by Ezio Melotti · 13 years ago
  28. 362b951 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  29. 7420b70 Fix potential resource leak in test_mmap. by Nadeem Vawda · 13 years ago
  30. 909f6d2 Issue #11277: Fix tests - crash will not trigger if the file is closed and reopened. by Nadeem Vawda · 13 years ago
  31. ced1056 Issue #11277: Add tests for mmap crash when using large sparse files on OS X. by Nadeem Vawda · 13 years ago
  32. caed7fe #11999: sync based on comparing mtimes, not mtime to system clock by R David Murray · 13 years ago
  33. f51738b Fix for issue 10684: Folders get deleted when trying to change case with shutil.move (case insensitive file systems only) by Ronald Oussoren · 13 years ago
  34. fc5ed80 #8158: add missing 'description' description to optparse docstring. by R David Murray · 13 years ago
  35. f16898b #11985: update docstring of platform.python_implementation. by Ezio Melotti · 13 years ago
  36. a6cd0cf Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a by Victor Stinner · 13 years ago
  37. 3249dec Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the by Victor Stinner · 13 years ago
  38. f108f82 Wrap the testskip decorator for the proper test to resolve bb failure. by Senthil Kumaran · 13 years ago
  39. 8b8e7f4 Further fix #7838. CREATE_NEW_CONSOLE was exposed, but none of the by Brian Curtin · 13 years ago
  40. e3bdcf4 skip the extractall test on platforms where os.symlink is not available. by Senthil Kumaran · 13 years ago
  41. 123932f Add tests for tarfile extractall feature when with symlinks by Senthil Kumaran · 13 years ago
  42. b185a04 #11926: add missing keywords to help("keywords"). by Ezio Melotti · 13 years ago
  43. 9a42793 Branch merge by Éric Araujo · 13 years ago
  44. 935a588 #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are too long. by Ezio Melotti · 13 years ago
  45. 7cfe5f8 Fix for issue11236 getpass.getpass to respond ctrl-c or ctrl-z by Senthil Kumaran · 13 years ago
  46. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  47. 2bad92d Remove obsolete/duplicate docstring by Éric Araujo · 13 years ago
  48. 5348b63 Branch merge by Éric Araujo · 13 years ago
  49. de579d4 Add a space to make json doc a bit more readable by Éric Araujo · 13 years ago
  50. fc330ae Minor text rearrangement. by Raymond Hettinger · 13 years ago
  51. ad0790e Branch merge by Éric Araujo · 13 years ago
  52. f8e1b60 Add docstring to dbm.open by Éric Araujo · 13 years ago
  53. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  54. d07eaf1 Issue #11875: Alter the previous fix to work better with subclasses by Raymond Hettinger · 13 years ago
  55. 1114744 merge by Raymond Hettinger · 13 years ago
  56. ab69438 Hmm, __ne__ was missing by Raymond Hettinger · 13 years ago
  57. d08a2c2 Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. by Raymond Hettinger · 13 years ago
  58. 58de6ee Fix sporadic failure in test_startfile. by Nadeem Vawda · 13 years ago
  59. 2876a8c Rework multiset methods to use less memory and to make fewer calls to __hash__. by Raymond Hettinger · 13 years ago
  60. dcb22a3 Fix resource warning found manually by Éric Araujo · 13 years ago
  61. 1c746c2 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  62. 2df6a93 Issue #5057: fix a bug in the peepholer that led to non-portable pyc files between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. "\U00012345"[0]). by Ezio Melotti · 13 years ago
  63. 397eb44 Issue #11467: Fix urlparse behavior when handling urls which contains scheme specific part only digits. by Senthil Kumaran · 13 years ago
  64. 20f53f1 #11848: replace dead link in random.betavariate comment. by Ezio Melotti · 13 years ago
  65. 2d2ea1b Fix Issue11474 - fix url2pathname() handling of '/C|/' on Windows by Senthil Kumaran · 13 years ago
  66. 691840f Fix improper tests in RegisterTestCase by Éric Araujo · 13 years ago
  67. 395ba35 Minor tweaks to a few comments in heapq by Éric Araujo · 13 years ago
  68. ce073cd Fix typo in docstring. by Ezio Melotti · 13 years ago
  69. d210aa1 #9233: Fix json.loads({}) to return a dict (instead of a list), when _json is not available. by Ezio Melotti · 13 years ago
  70. 42368f9 Remove unnecessary imports and use assertIs instead of assertTrue. by Ezio Melotti · 13 years ago
  71. c753305 #9233: Fix json to work properly even when _json is not available. by Ezio Melotti · 13 years ago
  72. 4f95a52 #9233: skip _json-specific tests when _json is not available. by Ezio Melotti · 13 years ago
  73. 3dd02d6 #10019: Fix regression relative to 2.6: add newlines if indent=0 by R David Murray · 13 years ago
  74. abdeeff merge heads by Benjamin Peterson · 13 years ago
  75. bd3e362 make assigning to a bytes literal a syntax error (closes #11506) by Benjamin Peterson · 13 years ago
  76. 2643041 Fix Issue11703 - urllib2.geturl() does not return correct url when the original url contains #fragment. Patch Contribution by Santoso Wijaya. by Senthil Kumaran · 13 years ago
  77. 3780542 Issue 11747: Fix output format for context diffs. by Raymond Hettinger · 13 years ago
  78. 308f14a Add maxlinelen to docstring, delete obsolete wording by R David Murray · 13 years ago
  79. e2f2998 Fix #5162. Allow child spawning from Windows services (via pywin32). by brian.curtin · 13 years ago
  80. 45e47e5 Issue9670: Back out changeset 378b40d71175; test fails on other platforms by Ned Deily · 13 years ago
  81. 517ac72 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  82. e620d10 Issue #11719: Fix message about unexpected test_msilib skip. by Ross Lagerwall · 13 years ago
  83. e1292a2 #11492: fix header truncation on folding when there are runs of split chars. by R David Murray · 13 years ago
  84. 7da4db1 Improve test coverage of _split_ascii method. by R David Murray · 13 years ago
  85. 8f377a3 Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  86. c824e9a Try to fix sporadic test_multiprocessing failure by Antoine Pitrou · 13 years ago
  87. 4f61b02 Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. by Ross Lagerwall · 13 years ago
  88. 45fdb45 Try to fix sporadic failure in test_thread/test_threading by Antoine Pitrou · 13 years ago
  89. b35f29a Issue #11761: make tests for gc.get_count() less fragile by Antoine Pitrou · 13 years ago
  90. d055956 Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  91. 35722a9 Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. by Kristjan Valur Jonsson · 13 years ago
  92. acb6309 Merge issue 11662. by Guido van Rossum · 13 years ago
  93. a119df9 Issue 11662: Fix vulnerability in urllib/urllib2. by guido@google.com · 13 years ago
  94. f8d887e Closes #11696: Fix ID generation in msilib. Patch by Mark Mc Mahon. by Martin v. Löwis · 13 years ago
  95. 92b60d5 Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. by Mark Dickinson · 13 years ago
  96. 9bad3a9 Fix short file name generation in bdist_msi. by Martin v. Löwis · 13 years ago
  97. c01ffdf revert unintended changes by Benjamin Peterson · 13 years ago
  98. 8d6c62d check possible recursive _as_parameter_ to prevent segfault (closes #1838) by Benjamin Peterson · 13 years ago
  99. b8a5769 Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. by Ross Lagerwall · 13 years ago
  100. 89461ef Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. by Mark Dickinson · 13 years ago