1. 7fa8222 Fix links to the __next__ method. by Ezio Melotti · 12 years ago
  2. 35cbf16 Make doctests pass in the functional howto. by Ezio Melotti · 12 years ago
  3. 45a101d Improve markup in functional.rst, and fix a couple of errors. by Ezio Melotti · 12 years ago
  4. af94724 Fix link to str.format() in docs. by Chris Jerdonek · 12 years ago
  5. 4639749 Issue #16199: Fix typo in 2to3 docs. Thanks to Mark Lawrence for the report. by Chris Jerdonek · 12 years ago
  6. 0b960f5 Fix #16176. Properly identify Windows 8 via platform.platform() by Brian Curtin · 12 years ago
  7. cc32a68 Fix placement of shell=True warning in subprocess.Popen() docs. by Chris Jerdonek · 12 years ago
  8. 4a4a02b Issue #16115: Make further improvements to subprocess.Popen() documentation. by Chris Jerdonek · 12 years ago
  9. a1ff83e merge 3.2 heads by Georg Brandl · 12 years ago
  10. 3a2e101 Issue #12947: revert earlier workaround and use a monkey-patch to enable showing doctest directives only in the doctest docs. by Georg Brandl · 12 years ago
  11. 5591b02 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  12. a256841 Issue #16174: Fix suggested usage of dummy_threading module. by Andrew Svetlov · 12 years ago
  13. 1ed9847 Fix Issue 15922: make howto/urllib2.rst doctests pass. by Senthil Kumaran · 12 years ago
  14. b5ca932 Issue #16168: Use specified socket type for domain sockets in SysLogHandler. by Vinay Sajip · 12 years ago
  15. 470ee39 Issue #16115: Improve subprocess.Popen() documentation around args, shell, and executable arguments. by Chris Jerdonek · 12 years ago
  16. 0230b6a #13498: Clarify docs of os.makedirs()'s exist_ok argument. by Hynek Schlawack · 12 years ago
  17. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  18. c3e5b10 Issue #14900: Add aliases for sorting params for pstat to follow column names from pstat output. by Andrew Svetlov · 12 years ago
  19. 2ef4584 Issue #14900: Distuguish call count and primitive call count in pstat output. by Andrew Svetlov · 12 years ago
  20. 138a314 #9957: document that SpooledTemporaryFile.truncate does not take size arg by R David Murray · 12 years ago
  21. 4614cc4 Closes #16149: remove now-false statement about the inability to compare Decimal and float objects. by Georg Brandl · 12 years ago
  22. b2209cc revert accidental inclusion of subprocess tests by Andrew Svetlov · 12 years ago
  23. afbf90c Issue #16025: Minor corrections to the zipfile documentation. by Andrew Svetlov · 12 years ago
  24. cbd449b The file obj passed to ftp.storbinary/storlines must be opened in binary mode. by Ezio Melotti · 12 years ago
  25. 8cf1cc4 Issue #16138: fix typo. by Andrew Svetlov · 12 years ago
  26. 685fffa #16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch by Jesus Cea · 12 years ago
  27. adc8211 #16112: platform.architecture does not correctly escape argument to /usr/bin/file. Use 'communicate()' and decode the bytes by Jesus Cea · 12 years ago
  28. 4ca222d Issue #14997: disable <F5> in idle shell window. by Andrew Svetlov · 12 years ago
  29. fc990e9 Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file by Jesus Cea · 12 years ago
  30. cf45325 Closes #15897: zipimport.c doesn't check return value of fseek(). Typo by Jesus Cea · 12 years ago
  31. 83451a2 Fix Misc/ACKS alphabetic order by Jesus Cea · 12 years ago
  32. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  33. f532035 Close open bracket, thanks to Josh Helzer from docs@ by Andrew Svetlov · 12 years ago
  34. d0fe3e5 #15979: improve timeit documentation. by Ezio Melotti · 12 years ago
  35. 6db2335 Fix sqlite3 class markup. by R David Murray · 12 years ago
  36. cb2916a #15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24 (see #15801). by Ezio Melotti · 12 years ago
  37. c2cd626 Issue #15533: Skip test_cwd_with_relative_*() tests on Windows pending resolution of issue. by Chris Jerdonek · 12 years ago
  38. ec3ea94 Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd argument. by Chris Jerdonek · 12 years ago
  39. f727082 Speed up test_httpservers by avoiding a one-second cleanup wait after each test case. by Antoine Pitrou · 12 years ago
  40. 93b5b33 merge heads by Gregory P. Smith · 12 years ago
  41. 3905171 Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD by Gregory P. Smith · 12 years ago
  42. 1a1883d #16085: Don't promote shadowing builtins in the configparser example. by R David Murray · 12 years ago
  43. 5320250 #16071: fix more email.message links in mailbox docs. by R David Murray · 12 years ago
  44. c5fe407 #16071: fix links to email.message.Message in mailbox docs. by R David Murray · 12 years ago
  45. 33b5769 Closes #15953: Incorrect some fields declaration in the PyTypeObject documentation by Jesus Cea · 12 years ago
  46. fd448da Close issue #16073: fix map() example in list comprehension documentation. by Chris Jerdonek · 12 years ago
  47. 7a1901f Closes issue #12376 : Pass on parameters in unittest.TextTestResult.__init__ super call by Michael Foord · 12 years ago
  48. 57491e0 Issue #16036: Improve documentation of built-in int()'s signature and arguments. by Chris Jerdonek · 12 years ago
  49. f39884b #15222: Insert blank line after each message in mbox mailboxes by Petri Lehtinen · 12 years ago
  50. 4680919 #15222: test_mailbox: End message template in a newline by Petri Lehtinen · 12 years ago
  51. 1654d74 switch assertion to an explicit ValueError by Benjamin Peterson · 12 years ago
  52. a820c7c fix test_compileall when run with -O[O] by Benjamin Peterson · 12 years ago
  53. d388c4e use modern conditional syntax by Benjamin Peterson · 12 years ago
  54. 1dedd0a - Issue #15935: Clarification of argparse docs, re: add_argument() type and by Barry Warsaw · 12 years ago
  55. df12f2b Issue #16015: Make welcome message more realistic in tutorial example. by Chris Jerdonek · 12 years ago
  56. 67b7b98 Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 12 years ago
  57. 9bb56a6 Issue #16015: Fix NameError doctest example in tutorial introduction. by Chris Jerdonek · 12 years ago
  58. 05ee581 Issue #14167: restore statement about breaks in finally clauses. by Mark Dickinson · 12 years ago
  59. 8618fb6 #16019, #16020: fix syntax highlight. by Ezio Melotti · 12 years ago
  60. c926c59 #16017: capitalize URLs. by Ezio Melotti · 12 years ago
  61. 4f24af0 #16014: fix broken link. by Ezio Melotti · 12 years ago
  62. e26d3af Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() by Christian Heimes · 12 years ago
  63. 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
  64. 20b8d99 #15949, #15899: use \ufffd instead of ?. by Ezio Melotti · 12 years ago
  65. b1d0e5b #15949, 15899: avoid using non-latin1 chars in the doc (they break `make all-pdf`). by Ezio Melotti · 12 years ago
  66. 85710a4 #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier. by Ezio Melotti · 12 years ago
  67. e418d76 #15304: fix wrong warning message in test.support.temp_cwd(). by Ezio Melotti · 12 years ago
  68. 0847db7 #15980: properly escape newlines in docstrings. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  69. 98b1c44 - Issue #11715: Fix multiarch detection without having Debian development by doko@ubuntu.com · 12 years ago
  70. f8a9a83 remove gdb noise about linux-vdso by Benjamin Peterson · 12 years ago
  71. 57caede Issue #15973: fixed 3.2 backport. by Alexander Belopolsky · 12 years ago
  72. 6f543a3 merge by Alexander Belopolsky · 12 years ago
  73. 3ec1536 Issue #15973: Fixed segmentation fault on timezone comparison to other types. by Alexander Belopolsky · 12 years ago
  74. c286e58 Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  75. 4e12ad1 Issue 15985: fix round argument names in documentation. Thanks Chris Jerdonek. by Mark Dickinson · 12 years ago
  76. 694f233 Fix a few quotes/backslashes. by Ezio Melotti · 12 years ago
  77. 8bbcb58 Fix markup in smtpd.rst. by Ezio Melotti · 12 years ago
  78. a3ccb23 Fix rst markup in timeit docs. by Ezio Melotti · 12 years ago
  79. c90111f #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements "meta" and "param". by Ezio Melotti · 12 years ago
  80. ab02db2 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
  81. 16d2b47 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  82. 26e5878 #11643: fix rst markup error in site.rst. by Ezio Melotti · 12 years ago
  83. 13bec9b #15920: fix doctests in Doc/howto/regex.rst. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
  84. 8a53dbe Issue #15526: try to fix test_startfile's inability to clean up after itself in time. by Antoine Pitrou · 12 years ago
  85. 186d523 #15789: mention shell-like parts of the stdlib in the subprocess docs. Patch by Chris Rebert. by Ezio Melotti · 12 years ago
  86. e34f8a9 #15932: use with statement in csv doc examples. Patch by Dario Bertini. by Ezio Melotti · 12 years ago
  87. 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
  88. e0add76 #15831: document multiple signatures on different lines. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
  89. 56f37aa #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst accordingly. by Ezio Melotti · 12 years ago
  90. 2dceb35 Update merge from 2.7: s/basetring/str by Barry Warsaw · 12 years ago
  91. eaae1b7 A follow up for issue #15906: change the test for calling the type conversion by Barry Warsaw · 12 years ago
  92. 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
  93. 1526582 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
  94. 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
  95. 4b2f9e9 - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 12 years ago
  96. d8bbde3 #14617: clarify discussion of interrelationship of __eq__ and __hash__. by R David Murray · 12 years ago
  97. 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
  98. 2fd8bdb Fix issue #15899: Make the unicode.rst doctests pass. Patch by Chris Jerdonek. by Senthil Kumaran · 12 years ago
  99. c8754a1 Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
  100. e8db356 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago