1. 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 · 12 years ago
  2. bd5279e Drop double newlines printed in some file iteration examples. by Andrew Svetlov · 12 years ago
  3. b7bc925 Remove debug output from example. by Ezio Melotti · 12 years ago
  4. 8eeda72 Issue #16628: Fix a memory leak in ctypes.resize(). by Antoine Pitrou · 12 years ago
  5. 766849b Document that hour in datetime.time ctor is optional parameter. by Andrew Svetlov · 12 years ago
  6. 7ddd9c2 Closes #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Jesus Cea · 12 years ago
  7. 8c7c697 Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. by Victor Stinner · 12 years ago
  8. 74635c9 Fix test splitting in previous commit. by Antoine Pitrou · 12 years ago
  9. 735f36e Split the bigmem re test in two separate tests with different memory requirements. by Antoine Pitrou · 12 years ago
  10. d5f462b document UnicodeError attributes by Benjamin Peterson · 12 years ago
  11. 17c50cd Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on some platforms. by Mark Dickinson · 12 years ago
  12. b83575b Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  13. 4fc0082 - Issue #16593: Have BSD 'make -s' do the right thing, thanks to Daniel Shahaf by Christian Heimes · 12 years ago
  14. 80e9eed Minor fixups. Early-out for equality test. Inline PREV/NEXT constants. by Raymond Hettinger · 12 years ago
  15. 63b0448 #16589: fix pprint signatures in the doc (backport of 106ee4eb5970). by Ezio Melotti · 12 years ago
  16. 4f3b594 Add Bruno Dupuis by Benjamin Peterson · 12 years ago
  17. 7196605 fix spelling by Benjamin Peterson · 12 years ago
  18. 8a1a17b Remove redundant check for symlink. (closes #6036) by Benjamin Peterson · 12 years ago
  19. 8da8268 Backport from 3.2: improve argument/parameter documentation (issue #15990). by Chris Jerdonek · 12 years ago
  20. 07d126f merge heads by Andrew Svetlov · 12 years ago
  21. 6a5c2e6 Issue #16194: document imp.load_dynamic problems by Andrew Svetlov · 12 years ago
  22. 256aaf7 add changelog by Benjamin Peterson · 12 years ago
  23. ed10a30 enumerate only requires an iterable (closes #16573) by Benjamin Peterson · 12 years ago
  24. ac26a2e Issue #16477: Close tarfile internal handlers in case of exception. by Andrew Svetlov · 12 years ago
  25. 43acbf1 #16549: fix test failures on Windows. by Ezio Melotti · 12 years ago
  26. def6ee5 #16476: Fix json.tool to avoid including trailing whitespace. by Ezio Melotti · 12 years ago
  27. d8feba9 #16549: Add tests for json.tools. Initial patch by Berker Peksag and Serhiy Storchaka. by Ezio Melotti · 12 years ago
  28. 6747326 Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive. by Stefan Krah · 12 years ago
  29. 3a237eb #16333: document a way to get rid of trailing whitespace when indent is used. by Ezio Melotti · 12 years ago
  30. 0d68ab3 Plug a leak in timemodule. The module dictionary is saved during by Gregory P. Smith · 12 years ago
  31. eff174b #16556: Fix inconsistency between kwds and kwargs. Patch by Taavi Burns. by Ezio Melotti · 12 years ago
  32. 282d331 #16559: Add more tests for the json module. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  33. 55b4cfb Add hyperlinks to the docs of some os.path functions (issue #16552). by Chris Jerdonek · 12 years ago
  34. b1cc6aa Issue #9011: AST creation no longer modifies CST for negated numeric literals. by Mark Dickinson · 12 years ago
  35. 1658797 Issue #16339: Document and test exec(stmt, globals, locals) form in Python 2.7. by Mark Dickinson · 12 years ago
  36. 508d7d3 test_winsound should require the "audio" resource, as it does on 3.x. by Antoine Pitrou · 12 years ago
  37. 56913b7 #16530: the "options" arg of os.wait3 is required. by Ezio Melotti · 12 years ago
  38. ec6486d #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  39. 0afe4e4 Fix more usages of NULL without including stdio.h. by Stefan Krah · 12 years ago
  40. ae66ca6 Issue #13057: Include stdio.h when NULL is used in configure.ac. by Stefan Krah · 12 years ago
  41. 0ec8f48 Remove steps no longer needed once __del__ was removed by Raymond Hettinger · 12 years ago
  42. ec5046b Fit nit: the return got dropped from an earlier check-in by Raymond Hettinger · 12 years ago
  43. b83ea14 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  44. e78f12f Backport 9dd4638de73b. by Stefan Krah · 12 years ago
  45. 6451497 #7782: add a test for test_iter. by Ezio Melotti · 12 years ago
  46. 01560de #16503: clarify "apply" docs. by Ezio Melotti · 12 years ago
  47. 9fab5ce The poplib module provides two classes, not one. by Antoine Pitrou · 12 years ago
  48. db5947f #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
  49. 9e94972 #14313: zipfile now raises NotImplementedError when the compression type is unknown. by Ezio Melotti · 12 years ago
  50. 355637b #16053: document csv.Dialect.strict. Patch by Kushal Das. by Ezio Melotti · 12 years ago
  51. 3c9181b Typo fix. by Mark Dickinson · 12 years ago
  52. 0d18731 Issue #12005: clarify behaviour of % and // for Decimal objects. by Mark Dickinson · 12 years ago
  53. 02512fb Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. by Antoine Pitrou · 12 years ago
  54. 115bc79 Issue #9742: Sneaky fix for build failure on Solaris 9. by Mark Dickinson · 12 years ago
  55. e3ae321 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
  56. 1df43d3 #16420: document a way to escape metacharacters in glob/fnmatch. by Ezio Melotti · 12 years ago
  57. 820f2bd Update section about dir() in the tutorial. by Ezio Melotti · 12 years ago
  58. 9236a4e #16470: mention set and dict comprehension in the tutorial. Patch by Yongzhi Pan. by Ezio Melotti · 12 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 · 12 years ago
  60. 526b553 Remove versionadded from the tutorial, at a location where it produces more questions than it answers. by Georg Brandl · 12 years ago
  61. 0801231 Backport from 3.2: update PyPI docs regarding listing versions (issue #16400). by Chris Jerdonek · 12 years ago
  62. 9e173eb Link to "XRange Type" section in xrange() built-in function documentation. by Chris Jerdonek · 12 years ago
  63. 4a3a3f3 Backport 5db6d9ddf6e8. by Stefan Krah · 12 years ago
  64. 8a0d58b Use 2.x "print" syntax for this example. by Georg Brandl · 12 years ago
  65. b704eab Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  66. 027d6fc remove an obsolete comment by Gregory P. Smith · 12 years ago
  67. f047ba8 Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  68. 99f9b8d Issue #15677: Also fix docstrings in zlib module. by Nadeem Vawda · 12 years ago
  69. 04050b8 Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  70. c319725 whitespace fix by Gregory P. Smith · 12 years ago
  71. 211248b Fix issue #16140 bug that the fix to issue #16327 added - don't double by Gregory P. Smith · 12 years ago
  72. 9d3b6e9 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  73. f2705ae Fixes issue #14396: Handle the odd rare case of waitpid returning 0 by Gregory P. Smith · 12 years ago
  74. c1ce93a Fixes issue #9535: Fix pending signals that have been received but not yet by Gregory P. Smith · 12 years ago
  75. acfdfda Fix typo in backporting fix of issue #16411 to 2.7. by Nadeem Vawda · 12 years ago
  76. 3c30970 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 12 years ago
  77. 252f4dc Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 12 years ago
  78. 67f089f Backport from 3.2: adjust set and frozenset function docs (issue #16436). by Chris Jerdonek · 12 years ago
  79. 8523db7 Backport from 3.2: improve FAQ link in documentation (for issue #16435). by Chris Jerdonek · 12 years ago
  80. 2cc0b07 Bug #16441: avoid excessive memory usage working with large gzip files by Chris Withers · 12 years ago
  81. dc11879 #13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  82. 0901776 #16440: fix exception type and clarify example. by Ezio Melotti · 12 years ago
  83. 3eb0e1d Issue #16439: Fix markup in example for stdtypes. by Andrew Svetlov · 12 years ago
  84. 9b19c4b #16433: fix docstring of assertNotEqual. by Ezio Melotti · 12 years ago
  85. 527b149 #11481: fix markup. by Ezio Melotti · 12 years ago
  86. b1c0e3b #11481: update copy_reg docs and add example. by Ezio Melotti · 12 years ago
  87. 26025d6 #10385: use the mod role in subprocess docs. by Ezio Melotti · 12 years ago
  88. b271b3e Issue #15001: fix segfault on "del sys.modules['__main__']" by Hynek Schlawack · 12 years ago
  89. 6cad371 Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. by Nadeem Vawda · 12 years ago
  90. 751a50f Fix typo. by Ezio Melotti · 12 years ago
  91. 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 · 12 years ago
  92. 51c374d #16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz. by Ezio Melotti · 12 years ago
  93. 93d628b Closes #16183: ZipExtFile object close without file handle closed (backporting of Issue #9846) by Jesus Cea · 12 years ago
  94. 146a5fe Fix compilation on Windows by Christian Heimes · 12 years ago
  95. 50bc66a Fix a couple typos in Misc/NEWS. by Ezio Melotti · 12 years ago
  96. 4e2005d Merge heads. by Ezio Melotti · 12 years ago
  97. b9829fc Backport from 3.2: link to mapping glossary entry in docs. by Chris Jerdonek · 12 years ago
  98. 67dc4a8 #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 12 years ago
  99. 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 · 12 years ago
  100. d1076db #4711: break long words in the docs sidebar to avoid overflow. by Ezio Melotti · 12 years ago