1. 5c4e32b #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett. by Ezio Melotti · 13 years ago
  2. 32851d6 #15109: revert '%'->'format' changes in 4b105d328fe7 to fix regression. by R David Murray · 13 years ago
  3. d618684 #15545: sort iterdump via SQL instead of in python code by R David Murray · 13 years ago
  4. ec8f8f7 Issue #15782: Prevent compile errors of OS X Carbon modules _Fm, _Qd, and by Ned Deily · 13 years ago
  5. c4b82c0 Issue #11461: Fix the incremental UTF-16 decoder. Original patch by by Serhiy Storchaka · 13 years ago
  6. be2b907 Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host. by Charles-François Natali · 13 years ago
  7. 58abc5b #13094: add Programming FAQ entry about the behavior of closures. by Ezio Melotti · 13 years ago
  8. 23a32ba Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB by Victor Stinner · 13 years ago
  9. 895cc22 Issue #16828: Fix error incorrectly raised by bz2.compress(''). by Nadeem Vawda · 13 years ago
  10. a708adf call PyErr_Clear() when ignoring error from PyNumber_Int (closes #15516) by Benjamin Peterson · 13 years ago
  11. 140794d merge heads by Benjamin Peterson · 13 years ago
  12. 6b3f8d3 ensure the attribute name string is initalized before using it (closes #16839) by Benjamin Peterson · 13 years ago
  13. dbaac37 Fix incorrect grammar in Misc/NEWS. by Serhiy Storchaka · 13 years ago
  14. 1422442 Issue #16819: IDLE method completion now correctly works for unicode literals. by Serhiy Storchaka · 13 years ago
  15. 7450a81 Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy. by Richard Oudkerk · 13 years ago
  16. 10e93a6 Issue #14958: backport to 2.7.x from 3.3 (patch by Roger Serwy) by Ned Deily · 13 years ago
  17. cef2006 Fix issue 10527: make multiprocessing use poll() instead of select() if available. by Giampaolo Rodola' · 13 years ago
  18. 4ed797e Issue #16485: Fix file descriptor not being closed if file header patching fails on closing of aifc file. by Serhiy Storchaka · 13 years ago
  19. 40f12ab Backport Python 3.2 fix for issue #12065, and add another test for SSLSocket.connect_ex(). by Antoine Pitrou · 13 years ago
  20. cf095f8 Issue #16761: Raise TypeError when int() or long() called with base argument only. by Serhiy Storchaka · 13 years ago
  21. 3684c79 Issue #15324: Fix regrtest parsing of --fromfile and --randomize options. by Chris Jerdonek · 13 years ago
  22. 33e05e7 Fix #16759. Convert DWORD registry values using unsigned long. by Brian Curtin · 13 years ago
  23. a0b7e9c Null merge. by Serhiy Storchaka · 13 years ago
  24. 61006a2 Issue #16504: Catch SyntaxErrors raised by tokenizer in IDLE. by Serhiy Storchaka · 13 years ago
  25. 0e091b0 Fix #14420. Check for PyLong as well as PyInt when converting in Py2Reg. by Brian Curtin · 13 years ago
  26. 4a5a4c2 #16618: Add more glob regression tests by Hynek Schlawack · 13 years ago
  27. 2f01e23 Issue #16702: Skip proxies for localhost in urllib2_localnet tests by Senthil Kumaran · 13 years ago
  28. 1974baa Fix issue16713 - tel url parsing with params by Senthil Kumaran · 13 years ago
  29. 9fade76 Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due to buggy fstat) by Mark Dickinson · 13 years ago
  30. 1c6c90f Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 13 years ago
  31. f8a6b00 Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that to return headers correctly by Senthil Kumaran · 13 years ago
  32. ab7dd18 #8853: Allow port to be of type long for socket.getaddrinfo() by Petri Lehtinen · 13 years ago
  33. 9201442 add news note (#16597) by Benjamin Peterson · 13 years ago
  34. c2a8169 Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (patch by Serhiy Storchaka) by Giampaolo Rodola' · 13 years ago
  35. bc453ca Fix #14901. Update some sections of Windows FAQ. by Brian Curtin · 13 years ago
  36. 124ee8b Issue #16626: Fix infinite recursion in glob.glob() on Windows when the pattern contains a wildcard in the drive or UNC path. by Antoine Pitrou · 13 years ago
  37. 646c7b5 #16664: Add regression tests for glob's behaviour concerning "."-entries by Hynek Schlawack · 13 years ago
  38. 4113d2b Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 13 years ago
  39. 7dddec4 Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python. by Antoine Pitrou · 13 years ago
  40. 367efc2 Branch merge by Éric Araujo · 13 years ago
  41. 2320fa0 Fix setup.py register failure with invalid rst in description (#13614). by Éric Araujo · 13 years ago
  42. d38c990 Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 13 years ago
  43. 8eeda72 Issue #16628: Fix a memory leak in ctypes.resize(). by Antoine Pitrou · 13 years ago
  44. 7ddd9c2 Closes #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Jesus Cea · 13 years ago
  45. 8c7c697 Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. by Victor Stinner · 13 years ago
  46. b83575b Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 13 years ago
  47. 8da8268 Backport from 3.2: improve argument/parameter documentation (issue #15990). by Chris Jerdonek · 13 years ago
  48. 256aaf7 add changelog by Benjamin Peterson · 13 years ago
  49. def6ee5 #16476: Fix json.tool to avoid including trailing whitespace. by Ezio Melotti · 13 years ago
  50. d8feba9 #16549: Add tests for json.tools. Initial patch by Berker Peksag and Serhiy Storchaka. by Ezio Melotti · 13 years ago
  51. 0d68ab3 Plug a leak in timemodule. The module dictionary is saved during by Gregory P. Smith · 13 years ago
  52. 282d331 #16559: Add more tests for the json module. Patch by Serhiy Storchaka. by Ezio Melotti · 13 years ago
  53. b1cc6aa Issue #9011: AST creation no longer modifies CST for negated numeric literals. by Mark Dickinson · 13 years ago
  54. b83ea14 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 13 years ago
  55. db5947f #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 13 years ago
  56. 9e94972 #14313: zipfile now raises NotImplementedError when the compression type is unknown. by Ezio Melotti · 13 years ago
  57. 02512fb Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. by Antoine Pitrou · 13 years ago
  58. e3ae321 Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). by Antoine Pitrou · 13 years ago
  59. f34e4de Closes #16461: Wave library should be able to deal with 4GB wav files, and sample rate of 44100 Hz. by Jesus Cea · 13 years ago
  60. 0801231 Backport from 3.2: update PyPI docs regarding listing versions (issue #16400). by Chris Jerdonek · 13 years ago
  61. b704eab Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 13 years ago
  62. 04050b8 Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 13 years ago
  63. 9d3b6e9 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 13 years ago
  64. f2705ae Fixes issue #14396: Handle the odd rare case of waitpid returning 0 by Gregory P. Smith · 13 years ago
  65. c1ce93a Fixes issue #9535: Fix pending signals that have been received but not yet by Gregory P. Smith · 13 years ago
  66. 3c30970 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 13 years ago
  67. 252f4dc Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 13 years ago
  68. 2cc0b07 Bug #16441: avoid excessive memory usage working with large gzip files by Chris Withers · 13 years ago
  69. dc11879 #13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka. by Ezio Melotti · 13 years ago
  70. b271b3e Issue #15001: fix segfault on "del sys.modules['__main__']" by Hynek Schlawack · 13 years ago
  71. 6cad371 Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. by Nadeem Vawda · 13 years ago
  72. 751a50f Fix typo. by Ezio Melotti · 13 years ago
  73. c18cc0e #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 · 13 years ago
  74. 50bc66a Fix a couple typos in Misc/NEWS. by Ezio Melotti · 13 years ago
  75. 67dc4a8 #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 13 years ago
  76. ef31738 #12759: sre_parse now raises a proper error when the name of the group is missing. Initial patch by Serhiy Storchaka. by Ezio Melotti · 13 years ago
  77. 7d24b16 #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. by Ezio Melotti · 13 years ago
  78. 5018db7 Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu by Andrew Svetlov · 13 years ago
  79. 0552fc2 Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 13 years ago
  80. e9e35c3 Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. by Antoine Pitrou · 13 years ago
  81. c40ddae fix spelling by Benjamin Peterson · 13 years ago
  82. 0ec820f only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 13 years ago
  83. bdf1b9e Closes #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT! by Jesus Cea · 13 years ago
  84. 5c89c19 #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 13 years ago
  85. 75d3600 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 13 years ago
  86. 3d07206 #8040: add a version switcher to the documentation. Patch by Yury Selivanov. by Ezio Melotti · 13 years ago
  87. 54eed2e #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 13 years ago
  88. e999229 Issue #16274: Fix test_asyncore on Solaris. by Trent Nelson · 13 years ago
  89. 9ad6a56 #15040: Close files in mailbox tests for PyPy compatibility by Petri Lehtinen · 13 years ago
  90. 45dba1d Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 13 years ago
  91. dd72b3f Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile(). by Nadeem Vawda · 13 years ago
  92. e97a24d Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 13 years ago
  93. b48c028 Issue #6074: Restore the long-broken support for running with read-only source files on Windows by Nick Coghlan · 13 years ago
  94. 9971616 Fixes Issue #12268 for the io module - File readline, readlines and by Gregory P. Smith · 13 years ago
  95. c1924ab Fix #16176. Properly identify Windows 8 via platform.platform() by Brian Curtin · 13 years ago
  96. 1906c0c Issue #16115: Backport subprocess.Popen() documentation improvements from 3.2. by Chris Jerdonek · 13 years ago
  97. ad4b000 Issue #14783: Backport changes from 3.2. by Chris Jerdonek · 13 years ago
  98. 3e94e14 Backed out changeset 5abacebec9d2 by Jesus Cea · 13 years ago
  99. 82a3924 Backed out changeset c73b90b6dadd by Jesus Cea · 13 years ago
  100. 95038fa Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file by Jesus Cea · 13 years ago