1. c71b4c7 Issue #6074: Actually delete the source file in the test as intended by Nick Coghlan · 12 years ago
  2. 34937ce Issue #6074: Forward port Windows read-only source file fix from 2.7 by Nick Coghlan · 12 years ago
  3. 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
  4. 9104479 Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= sizeof(long). by Mark Dickinson · 12 years ago
  5. 5bf7f1f Clarify universal-newline wording in tutorial (issue #16266). by Chris Jerdonek · 12 years ago
  6. 0dccbe1 null merge by Andrew Svetlov · 12 years ago
  7. abfc7df Issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 12 years ago
  8. 1eff0fc Issue #15378: Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  9. e9cf97c Issue #16265: Fix collapsing of code sample in tutorial. by Andrew Svetlov · 12 years ago
  10. 45bb613 Issue #16257: make test_create_connection() handle ENETUNREACH. by Trent Nelson · 12 years ago
  11. 739fc54 Issue #15819: use standard autoconf preset output variables. by Trent Nelson · 12 years ago
  12. 3ed2cb5 Also add tests for TextIOWrapper.writelines() (issue #15744). by Antoine Pitrou · 12 years ago
  13. 131a489 Add tests for the writelines() method of file objects. by Antoine Pitrou · 12 years ago
  14. 6603118 Issue #15819: tweak logic in previous commit (617591e7d708). by Trent Nelson · 12 years ago
  15. 9effe69 Issue #15819: additional fixes for out-of-tree builds from read-only src. by Trent Nelson · 12 years ago
  16. ee892b9 Issue #16244: Remove file mode overrides. by Vinay Sajip · 12 years ago
  17. 4fab8f0 Issue #16225: Add additional note to tutorial about changing sequence while looping. by Chris Jerdonek · 12 years ago
  18. f341317 Issue #16206: Improve the documentation of the dict constructor. by Chris Jerdonek · 12 years ago
  19. 7a9953e skip if __doc__ is gone by Benjamin Peterson · 12 years ago
  20. 951a9e3 fix to work if __doc__ is removed by Benjamin Peterson · 12 years ago
  21. 7fa8222 Fix links to the __next__ method. by Ezio Melotti · 12 years ago
  22. 35cbf16 Make doctests pass in the functional howto. by Ezio Melotti · 12 years ago
  23. 45a101d Improve markup in functional.rst, and fix a couple of errors. by Ezio Melotti · 12 years ago
  24. af94724 Fix link to str.format() in docs. by Chris Jerdonek · 12 years ago
  25. 4639749 Issue #16199: Fix typo in 2to3 docs. Thanks to Mark Lawrence for the report. by Chris Jerdonek · 12 years ago
  26. 0b960f5 Fix #16176. Properly identify Windows 8 via platform.platform() by Brian Curtin · 12 years ago
  27. cc32a68 Fix placement of shell=True warning in subprocess.Popen() docs. by Chris Jerdonek · 12 years ago
  28. 4a4a02b Issue #16115: Make further improvements to subprocess.Popen() documentation. by Chris Jerdonek · 12 years ago
  29. a1ff83e merge 3.2 heads by Georg Brandl · 12 years ago
  30. 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
  31. 5591b02 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  32. a256841 Issue #16174: Fix suggested usage of dummy_threading module. by Andrew Svetlov · 12 years ago
  33. 1ed9847 Fix Issue 15922: make howto/urllib2.rst doctests pass. by Senthil Kumaran · 12 years ago
  34. b5ca932 Issue #16168: Use specified socket type for domain sockets in SysLogHandler. by Vinay Sajip · 12 years ago
  35. 470ee39 Issue #16115: Improve subprocess.Popen() documentation around args, shell, and executable arguments. by Chris Jerdonek · 12 years ago
  36. 0230b6a #13498: Clarify docs of os.makedirs()'s exist_ok argument. by Hynek Schlawack · 12 years ago
  37. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  38. c3e5b10 Issue #14900: Add aliases for sorting params for pstat to follow column names from pstat output. by Andrew Svetlov · 12 years ago
  39. 2ef4584 Issue #14900: Distuguish call count and primitive call count in pstat output. by Andrew Svetlov · 12 years ago
  40. 138a314 #9957: document that SpooledTemporaryFile.truncate does not take size arg by R David Murray · 12 years ago
  41. 4614cc4 Closes #16149: remove now-false statement about the inability to compare Decimal and float objects. by Georg Brandl · 12 years ago
  42. b2209cc revert accidental inclusion of subprocess tests by Andrew Svetlov · 12 years ago
  43. afbf90c Issue #16025: Minor corrections to the zipfile documentation. by Andrew Svetlov · 12 years ago
  44. cbd449b The file obj passed to ftp.storbinary/storlines must be opened in binary mode. by Ezio Melotti · 12 years ago
  45. 8cf1cc4 Issue #16138: fix typo. by Andrew Svetlov · 12 years ago
  46. 685fffa #16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch by Jesus Cea · 12 years ago
  47. 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
  48. 4ca222d Issue #14997: disable <F5> in idle shell window. by Andrew Svetlov · 12 years ago
  49. fc990e9 Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file by Jesus Cea · 12 years ago
  50. cf45325 Closes #15897: zipimport.c doesn't check return value of fseek(). Typo by Jesus Cea · 12 years ago
  51. 83451a2 Fix Misc/ACKS alphabetic order by Jesus Cea · 12 years ago
  52. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  53. f532035 Close open bracket, thanks to Josh Helzer from docs@ by Andrew Svetlov · 12 years ago
  54. d0fe3e5 #15979: improve timeit documentation. by Ezio Melotti · 12 years ago
  55. 6db2335 Fix sqlite3 class markup. by R David Murray · 12 years ago
  56. cb2916a #15923: fix a mistake in asdl_c.py that resulted in a TypeError after 2801bf875a24 (see #15801). by Ezio Melotti · 12 years ago
  57. c2cd626 Issue #15533: Skip test_cwd_with_relative_*() tests on Windows pending resolution of issue. by Chris Jerdonek · 12 years ago
  58. ec3ea94 Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd argument. by Chris Jerdonek · 12 years ago
  59. f727082 Speed up test_httpservers by avoiding a one-second cleanup wait after each test case. by Antoine Pitrou · 12 years ago
  60. 93b5b33 merge heads by Gregory P. Smith · 12 years ago
  61. 3905171 Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILD by Gregory P. Smith · 12 years ago
  62. 1a1883d #16085: Don't promote shadowing builtins in the configparser example. by R David Murray · 12 years ago
  63. 5320250 #16071: fix more email.message links in mailbox docs. by R David Murray · 12 years ago
  64. c5fe407 #16071: fix links to email.message.Message in mailbox docs. by R David Murray · 12 years ago
  65. 33b5769 Closes #15953: Incorrect some fields declaration in the PyTypeObject documentation by Jesus Cea · 12 years ago
  66. fd448da Close issue #16073: fix map() example in list comprehension documentation. by Chris Jerdonek · 12 years ago
  67. 7a1901f Closes issue #12376 : Pass on parameters in unittest.TextTestResult.__init__ super call by Michael Foord · 12 years ago
  68. 57491e0 Issue #16036: Improve documentation of built-in int()'s signature and arguments. by Chris Jerdonek · 12 years ago
  69. f39884b #15222: Insert blank line after each message in mbox mailboxes by Petri Lehtinen · 12 years ago
  70. 4680919 #15222: test_mailbox: End message template in a newline by Petri Lehtinen · 12 years ago
  71. 1654d74 switch assertion to an explicit ValueError by Benjamin Peterson · 12 years ago
  72. a820c7c fix test_compileall when run with -O[O] by Benjamin Peterson · 12 years ago
  73. d388c4e use modern conditional syntax by Benjamin Peterson · 12 years ago
  74. 1dedd0a - Issue #15935: Clarification of argparse docs, re: add_argument() type and by Barry Warsaw · 12 years ago
  75. df12f2b Issue #16015: Make welcome message more realistic in tutorial example. by Chris Jerdonek · 12 years ago
  76. 67b7b98 Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 12 years ago
  77. 9bb56a6 Issue #16015: Fix NameError doctest example in tutorial introduction. by Chris Jerdonek · 12 years ago
  78. 05ee581 Issue #14167: restore statement about breaks in finally clauses. by Mark Dickinson · 12 years ago
  79. 8618fb6 #16019, #16020: fix syntax highlight. by Ezio Melotti · 12 years ago
  80. c926c59 #16017: capitalize URLs. by Ezio Melotti · 12 years ago
  81. 4f24af0 #16014: fix broken link. by Ezio Melotti · 12 years ago
  82. e26d3af Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() by Christian Heimes · 12 years ago
  83. 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
  84. 20b8d99 #15949, #15899: use \ufffd instead of ?. by Ezio Melotti · 12 years ago
  85. b1d0e5b #15949, 15899: avoid using non-latin1 chars in the doc (they break `make all-pdf`). by Ezio Melotti · 12 years ago
  86. 85710a4 #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier. by Ezio Melotti · 12 years ago
  87. e418d76 #15304: fix wrong warning message in test.support.temp_cwd(). by Ezio Melotti · 12 years ago
  88. 0847db7 #15980: properly escape newlines in docstrings. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  89. 98b1c44 - Issue #11715: Fix multiarch detection without having Debian development by doko@ubuntu.com · 12 years ago
  90. f8a9a83 remove gdb noise about linux-vdso by Benjamin Peterson · 12 years ago
  91. 57caede Issue #15973: fixed 3.2 backport. by Alexander Belopolsky · 12 years ago
  92. 6f543a3 merge by Alexander Belopolsky · 12 years ago
  93. 3ec1536 Issue #15973: Fixed segmentation fault on timezone comparison to other types. by Alexander Belopolsky · 12 years ago
  94. c286e58 Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka. by Mark Dickinson · 12 years ago
  95. 4e12ad1 Issue 15985: fix round argument names in documentation. Thanks Chris Jerdonek. by Mark Dickinson · 12 years ago
  96. 694f233 Fix a few quotes/backslashes. by Ezio Melotti · 12 years ago
  97. 8bbcb58 Fix markup in smtpd.rst. by Ezio Melotti · 12 years ago
  98. a3ccb23 Fix rst markup in timeit docs. by Ezio Melotti · 12 years ago
  99. c90111f #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements "meta" and "param". by Ezio Melotti · 12 years ago
  100. ab02db2 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago