1. 186d523 #15789: mention shell-like parts of the stdlib in the subprocess docs. Patch by Chris Rebert. by Ezio Melotti · 12 years ago
  2. e34f8a9 #15932: use with statement in csv doc examples. Patch by Dario Bertini. by Ezio Melotti · 12 years ago
  3. 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
  4. e0add76 #15831: document multiple signatures on different lines. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
  5. 56f37aa #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst accordingly. by Ezio Melotti · 12 years ago
  6. 2dceb35 Update merge from 2.7: s/basetring/str by Barry Warsaw · 12 years ago
  7. eaae1b7 A follow up for issue #15906: change the test for calling the type conversion by Barry Warsaw · 12 years ago
  8. 55ad651 Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
  9. 1526582 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
  10. 79b97ee Fix out of bounds read in long_new() for empty bytes with an explicit base. int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359 by Christian Heimes · 12 years ago
  11. 4b2f9e9 - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 12 years ago
  12. d8bbde3 #14617: clarify discussion of interrelationship of __eq__ and __hash__. by R David Murray · 12 years ago
  13. 5557a9c Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 by Christian Heimes · 12 years ago
  14. 2fd8bdb Fix issue #15899: Make the unicode.rst doctests pass. Patch by Chris Jerdonek. by Senthil Kumaran · 12 years ago
  15. c8754a1 Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
  16. e8db356 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago
  17. 1f2799b #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 12 years ago
  18. 3159cb5 #15676: Proper attribution in Misc/ACKS by Jesus Cea · 12 years ago
  19. e81dc29 Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371 by Christian Heimes · 12 years ago
  20. 3d46339 Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. by Christian Heimes · 12 years ago
  21. 5abd76a #14649: clarify DocTestSuite error when there are no docstrings. by R David Murray · 12 years ago
  22. 01beb69 backport from the trunk, to fix test_tools with srcdir != builddir by doko@ubuntu.com · 12 years ago
  23. b517596 Issue #15901: Change example to use byte string instead of string by Richard Oudkerk · 12 years ago
  24. 48d8d21 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  25. 837e53a Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
  26. a0e7e41 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
  27. d5a8804 PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 12 years ago
  28. 949f331 Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE() after the check for self == NULL by Christian Heimes · 12 years ago
  29. 941bfcc Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
  30. 7330da4 Issue #15881: Added NEWS entry and proper credit. by Alexander Belopolsky · 12 years ago
  31. 5bedef3 Issue #15881: Fixed 3.2 backport. by Alexander Belopolsky · 12 years ago
  32. 3635156 Fixed whitespace by Alexander Belopolsky · 12 years ago
  33. 59fb38b Issue #15881: Fixed atexit hook in multiprocessing. by Alexander Belopolsky · 12 years ago
  34. 47bcfff Issue #15822: Fix installation of lib2to3 grammar pickles to ensure by Ned Deily · 12 years ago
  35. 14d66a9 #5088: document behavior of optparse defaults with 'append' action. by R David Murray · 12 years ago
  36. 8bdcdc2 Merge heads. by Ezio Melotti · 12 years ago
  37. e927e25 #15865: add "*" in the signature to document keyword-only args in the docs. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
  38. 1585b70 #15510: clarify textwrap's handling of whitespace, and add confirming tests. by R David Murray · 12 years ago
  39. b522828 #15847: allow args to be a tuple in parse_args by R David Murray · 12 years ago
  40. 96efdd4 Issue #15868: Fix refleak in bytesio.c (Coverity #715365). by Stefan Krah · 12 years ago
  41. 7ff1822 Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
  42. 5f38121 Fix for fcc629208842 BSD's make doesn't support some of the features. by Christian Heimes · 12 years ago
  43. 0897683 Issue #15591 and Issue #11715: silence output of setup.py when make is run with -s option. by Christian Heimes · 12 years ago
  44. 7dd06e1 Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently by Christian Heimes · 12 years ago
  45. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  46. 1d85745 Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  47. 397e5c9 Issue #15855: added docstrings for memoryview methods and data descriptors. by Alexander Belopolsky · 12 years ago
  48. 94dd7cb #15509: If %action substitution produces a null string, drop it. by R David Murray · 12 years ago
  49. c7dedb0 put * in the normal place by Benjamin Peterson · 12 years ago
  50. c5d7518 move variable decl to the top of the function by Benjamin Peterson · 12 years ago
  51. 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 12 years ago
  52. 1c371b2 #15802: Fix test logic in TestMaildir.test_create_tmp by Petri Lehtinen · 12 years ago
  53. 6fb8fb1 #12776,#11839: call argparse type function only once. by R David Murray · 12 years ago
  54. 2a0fb14 Remove trailing whitespace in order to silence warnings on HP-UX. by Trent Nelson · 12 years ago
  55. ff63e7a Issue #15825: fix typo in OrderedDict docs. by Andrew Svetlov · 12 years ago
  56. a45afca Issue #15819: Fix out-of-tree builds from a readonly source. by Trent Nelson · 12 years ago
  57. ecc4757 Issue #15800: fix the closing of input / output files when gzip is used as a script. by Antoine Pitrou · 12 years ago
  58. 49ccd51 Add missing comma. by Ezio Melotti · 12 years ago
  59. 28a6cfa use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 12 years ago
  60. 2412c93 - fix paste error (whitespace) from previous commit by Matthias Klose · 12 years ago
  61. 25b10a2 - Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target. by Matthias Klose · 12 years ago
  62. 72b1426 #11964: Document a change in v3.2 to the json indent parameter by Petri Lehtinen · 12 years ago
  63. 72c6eef Fix a JSON doc typo by Petri Lehtinen · 12 years ago
  64. aa935df #15788: fix broken links in subprocess doc. Patch by Chris Rebert. by Ezio Melotti · 12 years ago
  65. 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
  66. c8076df Fix wrong way of adding Error information in shutil.copytree. by Georg Brandl · 12 years ago
  67. 6f64796 Remove overeager test (don't depend on the sign of a nan; cf. issue #14521) by Mark Dickinson · 12 years ago
  68. 448f577 Remove incorrect lines (meant for cdecimal) from recently added Decimal tests. by Mark Dickinson · 12 years ago
  69. e4204bc Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs. by Mark Dickinson · 12 years ago
  70. 15251a9 Add glossary references by Antoine Pitrou · 12 years ago
  71. 331624b Issue #14674: Add a discussion of the json module's standard compliance. by Antoine Pitrou · 12 years ago
  72. a61b09f Closes #9374: add back now-unused module attributes; removing them is a backward compatibility issue, since they have a public-seeming name. by Georg Brandl · 12 years ago
  73. 638d40b #15249: Mangle From lines correctly when body contains invalid bytes. by R David Murray · 12 years ago
  74. f2b34b8 Issue 15777: Fix a refleak in _posixsubprocess. by Ross Lagerwall · 12 years ago
  75. 01d1837 Issue #15645: Ensure 2to3 grammar pickles are properly installed. by Ned Deily · 12 years ago
  76. eb61f8b Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on Mac OS X. by Ronald Oussoren · 12 years ago
  77. ee253eb Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. by Trent Nelson · 12 years ago
  78. 1b47bf4 #15752: s/assertRaisesRegexp/assertRaisesRegex/g by Ezio Melotti · 12 years ago
  79. 7cacd2e Issue #15736: Fix overflow in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  80. 514dbb0 Issue #15285: Refactor connect timeout test in test_timeout. by Trent Nelson · 12 years ago
  81. 9439f04 Issue #14954: Clarify the interaction of weak references and garbage collection. by Antoine Pitrou · 12 years ago
  82. c6fdafc #15199: Fix JavaScript's default MIME type to application/javascript by Petri Lehtinen · 12 years ago
  83. f6bd1b0 #15742: clarify sqlite parameter substitution example. by R David Murray · 12 years ago
  84. 75506e8 Issue #15726: Fix incorrect bounds checking in PyState_FindModule. by Antoine Pitrou · 12 years ago
  85. 07795df Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago
  86. db579d7 Issue #15738: Fix a missing NULL check in subprocess_fork_exec(). by Stefan Krah · 12 years ago
  87. fd24f9e Issue #15732: Fix (constructed) crash in _PySequence_BytesToCharpArray(). by Stefan Krah · 12 years ago
  88. e56bf97 #13579: teach string.Formatter about 'a'. by R David Murray · 12 years ago
  89. 8286071 Issue #15595: Fix subprocess.Popen(universal_newlines=True) by Andrew Svetlov · 12 years ago
  90. 6b96286 Check for NULL return value in PyStructSequence_NewType(). Found by Coverity. by Stefan Krah · 12 years ago
  91. 3c6661a Allow redemo.py to be used from the command line like other demos. by Ned Deily · 12 years ago
  92. b47ea9a Issue #15615: Add some tests for the json module's handling of invalid input data. by Antoine Pitrou · 12 years ago
  93. 05d79e9 Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. by Mark Dickinson · 12 years ago
  94. 31a1190 tutorial typo fix by Eli Bendersky · 12 years ago
  95. 75fd225 #15636: add versionadded for decodebytes by R David Murray · 12 years ago
  96. 2c1d1d6 #15355: Mention already-executing Exception in generator docs. by R David Murray · 12 years ago
  97. 433ef3b #15694: reflow paragraph. by R David Murray · 12 years ago
  98. 9f0c940 #15694: Link discussion of file objects to glossary entry. by R David Murray · 12 years ago
  99. f6190c1 Issue 15660: Clarify 0 prefix for width field in str.format doc. by Terry Jan Reedy · 12 years ago
  100. d9c026f Issue #15412: Remove erroneous note about weakrefs by Richard Oudkerk · 12 years ago