1. bf6ecf9 Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. by Antoine Pitrou · 12 years ago
  2. 17fc44c Improve str() and object.__str__() documentation (issue #13538). by Chris Jerdonek · 12 years ago
  3. 39bdad8 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  4. 7c66319 #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 12 years ago
  5. 6a5fc4c #14313: zipfile now raises NotImplementedError when the compression type is unknown. by Ezio Melotti · 12 years ago
  6. 17babc5 Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. by Antoine Pitrou · 12 years ago
  7. e4b86398 Closes #16461: Wave library should be able to deal with 4GB wav files, and sample rate of 44100 Hz. by Jesus Cea · 12 years ago
  8. f9e49ea Update the description of which package versions PyPI displays (issue #16400). by Chris Jerdonek · 12 years ago
  9. e11fecb Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  10. 19e568d Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  11. 12489d9 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  12. 3aee222 Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  13. 3d8e776 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  14. 6f62b58 move note to the right section by Gregory P. Smith · 12 years ago
  15. 2ec8233 Fixes issue #14396: Handle the odd rare case of waitpid returning 0 when by Gregory P. Smith · 12 years ago
  16. 9463e3a Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  17. 7ee9555 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 12 years ago
  18. ee7889d Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 12 years ago
  19. 5c89b4e Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  20. 9bf379e #13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  21. 5c6b3e2 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  22. 3907994 Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. by Nadeem Vawda · 12 years ago
  23. 6c5f521 #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. by Ezio Melotti · 12 years ago
  24. 8cd1c76 Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method. by Mark Dickinson · 12 years ago
  25. 540da76 #16336: fix input checking in the surrogatepass error handler. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  26. 8af179e Fix a couple typos in Misc/NEWS. by Ezio Melotti · 12 years ago
  27. c64bcbe #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 12 years ago
  28. 0941d9f #12759: sre_parse now raises a proper error when the name of the group is missing. Initial patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  29. 2cc3b4b #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. by Ezio Melotti · 12 years ago
  30. d183767 Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu by Andrew Svetlov · 12 years ago
  31. e4ad37e Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
  32. 9f69e79 Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. by Antoine Pitrou · 12 years ago
  33. 37d2c99 fix spelling by Benjamin Peterson · 12 years ago
  34. 275c848 merge heads by Benjamin Peterson · 12 years ago
  35. d1f2cb3 only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 12 years ago
  36. 64085e3 Closes #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT! by Jesus Cea · 12 years ago
  37. e9aeca7 Fix #16197. Update docstrings and documentation to match winreg code. by Brian Curtin · 12 years ago
  38. 92c28ca #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 12 years ago
  39. fb90c09 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 12 years ago
  40. 380ce65 #8040: add a version switcher to the documentation. Patch by Yury Selivanov. by Ezio Melotti · 12 years ago
  41. 252cd0e #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 12 years ago
  42. cad7b31 Issue #16250: Fix URLError invocation with proper args. by Senthil Kumaran · 12 years ago
  43. 7646449 Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. by Mark Dickinson · 12 years ago
  44. 837cd06 #16210: combine the two type() docs. Patch by Pete Sevander. by Ezio Melotti · 12 years ago
  45. c4c4842 - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. by Matthias Klose · 12 years ago
  46. 5f8f0d6 Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 12 years ago
  47. ae247a5 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 12 years ago
  48. 34937ce Issue #6074: Forward port Windows read-only source file fix from 2.7 by Nick Coghlan · 12 years ago
  49. 2d51f68 Fix issue #16270: urllib may hang when used for retrieving files via FTP by using a context manager. by Giampaolo Rodola' · 12 years ago
  50. 0dccbe1 null merge by Andrew Svetlov · 12 years ago
  51. abfc7df Issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 12 years ago
  52. 1eff0fc Issue #15378: Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  53. 0b960f5 Fix #16176. Properly identify Windows 8 via platform.platform() by Brian Curtin · 12 years ago
  54. 5591b02 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  55. 470ee39 Issue #16115: Improve subprocess.Popen() documentation around args, shell, and executable arguments. by Chris Jerdonek · 12 years ago
  56. 0230b6a #13498: Clarify docs of os.makedirs()'s exist_ok argument. by Hynek Schlawack · 12 years ago
  57. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  58. 2ef4584 Issue #14900: Distuguish call count and primitive call count in pstat output. by Andrew Svetlov · 12 years ago
  59. fc990e9 Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file by Jesus Cea · 12 years ago
  60. 83451a2 Fix Misc/ACKS alphabetic order by Jesus Cea · 12 years ago
  61. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  62. d0fe3e5 #15979: improve timeit documentation. by Ezio Melotti · 12 years ago
  63. cb2916a #15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24 (see #15801). by Ezio Melotti · 12 years ago
  64. ec3ea94 Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd argument. by Chris Jerdonek · 12 years ago
  65. 3905171 Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD by Gregory P. Smith · 12 years ago
  66. 7a1901f Closes issue #12376 : Pass on parameters in unittest.TextTestResult.__init__ super call by Michael Foord · 12 years ago
  67. 57491e0 Issue #16036: Improve documentation of built-in int()'s signature and arguments. by Chris Jerdonek · 12 years ago
  68. f39884b #15222: Insert blank line after each message in mbox mailboxes by Petri Lehtinen · 12 years ago
  69. 1dedd0a - Issue #15935: Clarification of argparse docs, re: add_argument() type and by Barry Warsaw · 12 years ago
  70. 67b7b98 Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 12 years ago
  71. e26d3af Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() by Christian Heimes · 12 years ago
  72. 6f80f5d Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). by Antoine Pitrou · 12 years ago
  73. 85710a4 #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier. by Ezio Melotti · 12 years ago
  74. e418d76 #15304: fix wrong warning message in test.support.temp_cwd(). by Ezio Melotti · 12 years ago
  75. 98b1c44 - Issue #11715: Fix multiarch detection without having Debian development by doko@ubuntu.com · 12 years ago
  76. c90111f #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements "meta" and "param". by Ezio Melotti · 12 years ago
  77. 1e7ee9d Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. by Antoine Pitrou · 12 years ago
  78. 56f37aa #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst accordingly. by Ezio Melotti · 12 years ago
  79. 4b2f9e9 - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 12 years ago
  80. c8754a1 Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
  81. 3159cb5 #15676: Proper attribution in Misc/ACKS by Jesus Cea · 12 years ago
  82. 941bfcc Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
  83. 7330da4 Issue #15881: Added NEWS entry and proper credit. by Alexander Belopolsky · 12 years ago
  84. 47bcfff Issue #15822: Fix installation of lib2to3 grammar pickles to ensure by Ned Deily · 12 years ago
  85. 7ff1822 Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
  86. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  87. 1d85745 Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  88. 94dd7cb #15509: If %action substitution produces a null string, drop it. by R David Murray · 12 years ago
  89. 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 12 years ago
  90. 1c371b2 #15802: Fix test logic in TestMaildir.test_create_tmp by Petri Lehtinen · 12 years ago
  91. 6fb8fb1 #12776,#11839: call argparse type function only once. by R David Murray · 12 years ago
  92. a45afca Issue #15819: Fix out-of-tree builds from a readonly source. by Trent Nelson · 12 years ago
  93. 28a6cfa use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 12 years ago
  94. 72b1426 #11964: Document a change in v3.2 to the json indent parameter by Petri Lehtinen · 12 years ago
  95. 2543756 Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using the clang compiler by Ronald Oussoren · 12 years ago
  96. e4204bc Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs. by Mark Dickinson · 12 years ago
  97. 331624b Issue #14674: Add a discussion of the json module's standard compliance. by Antoine Pitrou · 12 years ago
  98. 638d40b #15249: Mangle From lines correctly when body contains invalid bytes. by R David Murray · 12 years ago
  99. f2b34b8 Issue 15777: Fix a refleak in _posixsubprocess. by Ross Lagerwall · 12 years ago
  100. 01d1837 Issue #15645: Ensure 2to3 grammar pickles are properly installed. by Ned Deily · 12 years ago