1. 778db49 Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by by Charles-François Natali · 13 years ago
  2. acde6a0 onto 3.1.5 by Benjamin Peterson · 13 years ago
  3. d858df2 bump to 3.1.4 by Benjamin Peterson · 13 years ago
  4. 1df0f21 fix regression in netrc comment handling (closes #12009) by Benjamin Peterson · 13 years ago
  5. a22c98d simply use the Python version for pyexpat.__version__ #12221 by Benjamin Peterson · 13 years ago
  6. 9a63745 bump to 3.1.4rc1 by Benjamin Peterson · 13 years ago
  7. d5a9196 Issue #12205: Fix test_subprocess failure due to uninstalled test data. by Ned Deily · 13 years ago
  8. b8e59f7 Issue #985064: Make plistlib more resilient to faulty input plists. by Ned Deily · 13 years ago
  9. 9a7c524 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 13 years ago
  10. a80987f Issue #12175: RawIOBase.readall() now returns None if read() returns None. by Victor Stinner · 13 years ago
  11. b79f28c Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if by Victor Stinner · 13 years ago
  12. 6bcbef7 Issue #12100: Don't reset incremental encoders of CJK codecs at each call to by Victor Stinner · 13 years ago
  13. 7b54e75 Issue #5715: In socketserver, close the server socket in the child process. by Charles-François Natali · 13 years ago
  14. 7963a35 correctly lookup __dir__ by Benjamin Peterson · 13 years ago
  15. 4925cde Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore by Victor Stinner · 13 years ago
  16. ff1d2f4 Backport commit 33543b4e0e5d from Python 3.2: #10801: In zipfile, support by Victor Stinner · 13 years ago
  17. 02a67ac Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF-8" instead of "UTF8" by Ronald Oussoren · 13 years ago
  18. c77b931 Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas by Victor Stinner · 13 years ago
  19. d0e11ec Issue #10756: atexit normalizes the exception before displaying it. Patch by by Victor Stinner · 13 years ago
  20. 2ec6b17 Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. by Victor Stinner · 13 years ago
  21. 0c3d96a Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. by Nadeem Vawda · 13 years ago
  22. 7619e88 Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail by Nadeem Vawda · 13 years ago
  23. 3c0d8a1 #5723: Improve json tests to be executed with and without accelerations. by Ezio Melotti · 13 years ago
  24. 7c40489 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  25. e147806 Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. by Kurt B. Kaiser · 13 years ago
  26. ba9c664 Issue #10419: Fix build_scripts command of distutils to handle correctly by Victor Stinner · 13 years ago
  27. 1367265 #12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  28. ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  29. 4755ab0 Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, by Victor Stinner · 13 years ago
  30. 2f48d89 Stop trying to use _xmlplus in the xml module. Closes #11164. by Martin v. Löwis · 13 years ago
  31. 8269a44 #11910: Fix test_heapq to skip the C tests when _heapq is missing. by Ezio Melotti · 13 years ago
  32. 1c3fd58 Add back Misc/NEWS entry that got lost during merge, and fix a couple of other things. by Ezio Melotti · 13 years ago
  33. c1d5206 Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath. by Antoine Pitrou · 13 years ago
  34. 362b951 #12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations. by Ezio Melotti · 13 years ago
  35. caed7fe #11999: sync based on comparing mtimes, not mtime to system clock by R David Murray · 13 years ago
  36. 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
  37. a6cd0cf Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a by Victor Stinner · 13 years ago
  38. 13aaef5 Issue #9756: credit the author, Andreas Stührk (Trundle) by Victor Stinner · 13 years ago
  39. 3249dec Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the by Victor Stinner · 13 years ago
  40. 935a588 #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are too long. by Ezio Melotti · 14 years ago
  41. 72387f9 Update News entry for Issue11236 by Senthil Kumaran · 14 years ago
  42. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 14 years ago
  43. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 14 years ago
  44. 1114744 merge by Raymond Hettinger · 14 years ago
  45. d08a2c2 Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. by Raymond Hettinger · 14 years ago
  46. 58de6ee Fix sporadic failure in test_startfile. by Nadeem Vawda · 14 years ago
  47. 6c9b35b Issue #11768: The signal handler of the signal module only calls by Victor Stinner · 14 years ago
  48. 1c746c2 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 14 years ago
  49. 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 · 14 years ago
  50. 397eb44 Issue #11467: Fix urlparse behavior when handling urls which contains scheme specific part only digits. by Senthil Kumaran · 14 years ago
  51. 2d2ea1b Fix Issue11474 - fix url2pathname() handling of '/C|/' on Windows by Senthil Kumaran · 14 years ago
  52. c753305 #9233: Fix json to work properly even when _json is not available. by Ezio Melotti · 14 years ago
  53. a8b0f9a Merge updates by Senthil Kumaran · 14 years ago
  54. 60f02a6 Update the News for the fix to Issue11703. by Senthil Kumaran · 14 years ago
  55. 3dd02d6 #10019: Fix regression relative to 2.6: add newlines if indent=0 by R David Murray · 14 years ago
  56. bd3e362 make assigning to a bytes literal a syntax error (closes #11506) by Benjamin Peterson · 14 years ago
  57. 84c209a Correct leading spaces in my NEWS entry. by Brian Curtin · 14 years ago
  58. 628f980 Add NEWS item for #5162. by brian.curtin · 14 years ago
  59. 45e47e5 Issue9670: Back out changeset 378b40d71175; test fails on other platforms by Ned Deily · 14 years ago
  60. 517ac72 Issue #9670: Increase the default stack size for secondary threads on by Ned Deily · 14 years ago
  61. e620d10 Issue #11719: Fix message about unexpected test_msilib skip. by Ross Lagerwall · 14 years ago
  62. 52c950f Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted by Victor Stinner · 14 years ago
  63. 4f61b02 Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. by Ross Lagerwall · 14 years ago
  64. acb6309 Merge issue 11662. by Guido van Rossum · 14 years ago
  65. a119df9 Issue 11662: Fix vulnerability in urllib/urllib2. by guido@google.com · 14 years ago
  66. f8d887e Closes #11696: Fix ID generation in msilib. Patch by Mark Mc Mahon. by Martin v. Löwis · 14 years ago
  67. 92b60d5 Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when trying to pack a negative (in-range) integer. by Mark Dickinson · 14 years ago
  68. ccd2283 Fix misplaced Misc/NEWS entry. by Mark Dickinson · 14 years ago
  69. 9bad3a9 Fix short file name generation in bdist_msi. by Martin v. Löwis · 14 years ago
  70. 8d6c62d check possible recursive _as_parameter_ to prevent segfault (closes #1838) by Benjamin Peterson · 14 years ago
  71. b8a5769 Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. by Ross Lagerwall · 14 years ago
  72. 89461ef Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. by Mark Dickinson · 14 years ago
  73. 451385d Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file by Victor Stinner · 14 years ago
  74. e788ace Fix some issue references in NEWS by Éric Araujo · 14 years ago
  75. 628225c Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar by Victor Stinner · 14 years ago
  76. 877766d Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates by Antoine Pitrou · 14 years ago
  77. 5e98141 Issue #5421: Fix misleading error message when one of socket.sendto()'s by Antoine Pitrou · 14 years ago
  78. de91276 #11401: handle headers with no value. by R David Murray · 14 years ago
  79. 6d94bd4 #9298: restore proper folding of base64 encoded bodies. by R David Murray · 14 years ago
  80. 0b8753d Issue #11569: use absolute path to the sysctl command in multiprocessing to by Ronald Oussoren · 14 years ago
  81. 2c50a09 On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile no by Antoine Pitrou · 14 years ago
  82. e72e161 Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list by Ronald Oussoren · 14 years ago
  83. 94eceeb Fix #11491. When dbm.open was called with a file which already exists and by briancurtin · 14 years ago
  84. 2503249 Fixes #1099: Mac compile fails with pydebug and framework enabled by Ronald Oussoren · 14 years ago
  85. d79210a #11490: EACCES can also mean command not found by R David Murray · 14 years ago
  86. 37a79fb Issue 11131: Fix sign of zero result on decimal.Decimal plus and minus operations in ROUND_FLOOR rounding mode. by Mark Dickinson · 14 years ago
  87. 7983d33 Issue #11450: Don't truncate hg version info in Py_GetBuildInfo() when by Antoine Pitrou · 14 years ago
  88. d285318 Issue #5622: Fix curses.wrapper to raise correct exception if curses by Ned Deily · 14 years ago
  89. 81638f1 Issue #11411: Fix typo in the Makefile that prevented 'make DESTDIR=' from by Thomas Wouters · 14 years ago
  90. 16a0a0b Issue #11391: Writing to a mmap object created with by Antoine Pitrou · 14 years ago
  91. 2f95dc0 Merged revisions 88722 via svnmerge from by Giampaolo Rodolà · 14 years ago
  92. 9e719b6 Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge from by Antoine Pitrou · 14 years ago
  93. 8f15987 Merged revisions 88438,88440 via svnmerge from by Georg Brandl · 14 years ago
  94. 6baf117 Merged revisions 88426 via svnmerge from by Georg Brandl · 14 years ago
  95. f6c8fd6 Merged revisions 86537,86867-86868,86881,86887,86913-86915,86931-86933,86960,86964,86974,86980,86996,87008,87050 via svnmerge from by Georg Brandl · 14 years ago
  96. 43b2f45 Merged revisions 87136,87221,87256,87337-87338,87571,87839,88164 via svnmerge from by R. David Murray · 14 years ago
  97. f7ef4de Merged revisions 88337 via svnmerge from by Brett Cannon · 14 years ago
  98. f60b485 Move entries to the right place by Éric Araujo · 14 years ago
  99. b344dd0 Merged revisions 86236,86240,86332,86340,87271,87273,87447 via svnmerge from by Éric Araujo · 14 years ago
  100. 6554887 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 14 years ago