1. 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
  2. d7bae5e Grammar touchup. by Georg Brandl · 13 years ago
  3. 5018db7 Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu by Andrew Svetlov · 13 years ago
  4. 2c184c6 Reword set docs to use *proper subset/superset* terminology. by Andrew Svetlov · 13 years ago
  5. 0552fc2 Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 13 years ago
  6. 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
  7. 4ca83ec Issue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks Yury Selivanov. by Mark Dickinson · 13 years ago
  8. 8a9b401 Issue #14900: document added sort keys for profile stats. by Andrew Svetlov · 13 years ago
  9. 89e8f54 Issue #16348: Fix incorrect documentation for Decimal.remainder_near. by Mark Dickinson · 13 years ago
  10. 47fa4d5 avoid a function call with redundant checks for dict size by Benjamin Peterson · 13 years ago
  11. c40ddae fix spelling by Benjamin Peterson · 13 years ago
  12. 0ec820f only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 13 years ago
  13. bdf1b9e Closes #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT! by Jesus Cea · 13 years ago
  14. c454fe4 #16371: fix up the English. by R David Murray · 13 years ago
  15. 6e96e5e Issue #16370: Mention Py_SetProgramName in example for very high level embedding. by Andrew Svetlov · 13 years ago
  16. 227f59b Fix docstring for deque ctor to mark iterable parameter optional by Andrew Svetlov · 13 years ago
  17. 6da3ed6 initialize more global type objects (closes #16369) by Benjamin Peterson · 13 years ago
  18. 1625d88 Issue #16341: convert examples to use except ... as ... syntax. by Andrew Svetlov · 13 years ago
  19. 5c89c19 #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 13 years ago
  20. 64c0b2c Backport from 3.2: remove "Release" and "Date" markers from index pages. by Chris Jerdonek · 13 years ago
  21. 8e0dfea Add test for BZ2Decompressor.decompress("") after end of stream. by Nadeem Vawda · 13 years ago
  22. 41c25ba Issue #14570: Document json sort_keys parameter properly. by Andrew Svetlov · 13 years ago
  23. f4712d4 Remove confusing "Release" and "Date" markers from whatsnews. by Georg Brandl · 13 years ago
  24. 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
  25. 08114d4 changeset: 80007:49e4541f2aef by Georg Brandl · 13 years ago
  26. 6182266 Issue #14616: Document pipes.quote and mention this one in subprocess docs. by Andrew Svetlov · 13 years ago
  27. 0685e14 Update current version of the "dailybuild" script. by Georg Brandl · 13 years ago
  28. b70290a Update current version of the "dailybuild" script. by Georg Brandl · 13 years ago
  29. 5fb657d Add a autobuild-quick target that only rebuilds HTML. by Georg Brandl · 13 years ago
  30. 819574a merge with 2.6 by Georg Brandl · 13 years ago
  31. 55f23c4 #8040: port versionswitcher patch to 2.6. by Georg Brandl · 13 years ago
  32. fd3d102 #8040: fix the version. by Ezio Melotti · 13 years ago
  33. 8645890 #8040: enable the versionswitcher for the autobuild-dev target. by Ezio Melotti · 13 years ago
  34. 3d07206 #8040: add a version switcher to the documentation. Patch by Yury Selivanov. by Ezio Melotti · 13 years ago
  35. 54eed2e #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 13 years ago
  36. 3e66f0d #15043: Improve test_gdb support of gdb >= 7.4. by R David Murray · 13 years ago
  37. f8d370e Add some tests in 2.7 for Issue #16250 by Senthil Kumaran · 13 years ago
  38. e999229 Issue #16274: Fix test_asyncore on Solaris. by Trent Nelson · 13 years ago
  39. e793f44 #16332: use "except OSError as e" in subprocess docs. Patch by Berker Peksag. by Ezio Melotti · 13 years ago
  40. 8221f86 #16206: Improve examples about dict construction. by Ezio Melotti · 13 years ago
  41. 32473e7 Backport from 3.2: fix formatting of syntax description of function definition. by Chris Jerdonek · 13 years ago
  42. b74e02e #16303: remove extra quotes from exception and add (). Initial patch by Vladimir Rutsky. by Ezio Melotti · 13 years ago
  43. b8fbff8 #16210: combine the two type() docs. Patch by Pete Sevander. by Ezio Melotti · 13 years ago
  44. 9ad6a56 #15040: Close files in mailbox tests for PyPy compatibility by Petri Lehtinen · 13 years ago
  45. e3d4712 Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu by Ned Deily · 13 years ago
  46. 3dd8cbe Closes #16294: 8 space indent in tutorial by Jesus Cea · 13 years ago
  47. 45dba1d Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 13 years ago
  48. dd72b3f Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile(). by Nadeem Vawda · 13 years ago
  49. c308483 Fix whacky spacing in test_wsgiref by Antoine Pitrou · 13 years ago
  50. e97a24d Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 13 years ago
  51. c859bd2 Issue #10405: Document IDLE context menus in Standard Library document by Ned Deily · 13 years ago
  52. 33b0fc2 No reason to use a generator here by Nick Coghlan · 13 years ago
  53. 097708a Issue #6074: Actually delete the source file in the test as intended by Nick Coghlan · 13 years ago
  54. b48c028 Issue #6074: Restore the long-broken support for running with read-only source files on Windows by Nick Coghlan · 13 years ago
  55. 02f69f6 Issue #16274: revert r79813:90a46f8943d0 changes to asyncore/test_asyncore. by Trent Nelson · 13 years ago
  56. 0622f6c Issue #16274: backport of 3.2's asyncore/test_asyncore to 2.7. by Trent Nelson · 13 years ago
  57. 6a7f867 Issue #16257: make test_create_connection() handle ENETUNREACH. by Trent Nelson · 13 years ago
  58. 34562e1 Don't add -OPT:Olimit to CFLAGS on AIX, SunOS, HP-UX or IRIX. It breaks them. by Trent Nelson · 13 years ago
  59. f892597e Issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 13 years ago
  60. abf2051 Issue #15819: use standard autoconf preset output variables. by Trent Nelson · 13 years ago
  61. eadca1d Also add tests for TextIOWrapper.writelines() (issue #15744). by Antoine Pitrou · 13 years ago
  62. 78e761e Add tests for the writelines() method of file objects. by Antoine Pitrou · 13 years ago
  63. ce5a56e Merge heads. by Trent Nelson · 13 years ago
  64. fcb009c Issue #15819: tweak logic in previous commit (e0a2b14a3cf9). by Trent Nelson · 13 years ago
  65. ba6a6cf merge heads by Benjamin Peterson · 13 years ago
  66. bf67ba8 only run doctests when __doc__ is around by Benjamin Peterson · 13 years ago
  67. d86ceec Issue #15819: additional fixes for out-of-tree builds from read-only src. by Trent Nelson · 13 years ago
  68. ae1d185 Issue #15936: Reformat text for os.random to follow Larry Hastings suggestion by Andrew Svetlov · 13 years ago
  69. 8a9d370 Issue #15936: Add link from os.urandom to random.SystemRandom by Andrew Svetlov · 13 years ago
  70. 94540d4 Issue #16244: Remove file mode overrides. by Vinay Sajip · 13 years ago
  71. 0cffd6b Issue #16225: Backport from 3.2: Add additional note to tutorial about looping. by Chris Jerdonek · 13 years ago
  72. fd6d3b1 fix typo by Benjamin Peterson · 13 years ago
  73. ca01a76 don't expect warnings from doctests if they can't run by Benjamin Peterson · 13 years ago
  74. d7d9a44 Issue #16227: Add to 2.x Unicode HOWTO a link to the Python 3 version. by Chris Jerdonek · 13 years ago
  75. def5df6 Issue #16206: Backport dict documentation improvements from 3.2. by Chris Jerdonek · 13 years ago
  76. d9edd82 String exceptions aren't just deprecated, they are gone. by Raymond Hettinger · 13 years ago
  77. 9971616 Fixes Issue #12268 for the io module - File readline, readlines and by Gregory P. Smith · 13 years ago
  78. 2aa5afa Issue #16199: Backport 2to3 typo fix from 3.2. by Chris Jerdonek · 13 years ago
  79. c1924ab Fix #16176. Properly identify Windows 8 via platform.platform() by Brian Curtin · 13 years ago
  80. 1e65159 Backport from 3.2: Fix placement of shell=True warning in subprocess.Popen() docs. by Chris Jerdonek · 13 years ago
  81. 2a6672b Issue #16115: Backport subprocess.Popen() documentation improvements from 3.2. by Chris Jerdonek · 13 years ago
  82. cfb01a5 Issue #12947: Backport doctest documentation change from 3.3. by Chris Jerdonek · 13 years ago
  83. a11c1fc Missed one instance of code-block:: text highlighting to revert. by Georg Brandl · 13 years ago
  84. 7495456 Issue #12947: revert earlier workaround and use a monkey-patch to enable showing doctest directives only in the doctest docs. by Georg Brandl · 13 years ago
  85. d469c40 Issue #12947: Backport doctest documentation improvements from 3.3. by Chris Jerdonek · 13 years ago
  86. 7c06801 Fix Issue 15922: make howto/urllib2.rst doctests pass. by Senthil Kumaran · 13 years ago
  87. 6ecdb58 Issue #16168: Use specified socket type for domain sockets in SysLogHandler. by Vinay Sajip · 13 years ago
  88. 1906c0c Issue #16115: Backport subprocess.Popen() documentation improvements from 3.2. by Chris Jerdonek · 13 years ago
  89. ad4b000 Issue #14783: Backport changes from 3.2. by Chris Jerdonek · 13 years ago
  90. e4831f6 Issue #14900: Add aliases for sorting params for pstat to follow column names from pstat output. by Andrew Svetlov · 13 years ago
  91. 75033a3 Issue #14900: Distuguish call count and primitive call count in pstat output. by Andrew Svetlov · 13 years ago
  92. 313dc9b Clean up a test turd. by Mark Dickinson · 13 years ago
  93. fefd3ac #9957: document that SpooledTemporaryFile.truncate does not take size arg by R David Murray · 13 years ago
  94. 8c44193 Issue #16025: Minor corrections to the zipfile documentation. by Andrew Svetlov · 13 years ago
  95. 2699c9d #16112: platform.architecture does not correctly escape argument to /usr/bin/file. Fix original patch by Jesus Cea · 13 years ago
  96. 69e7c9b #16112: platform.architecture does not correctly escape argument to /usr/bin/file. Use 'communicate()' by Jesus Cea · 13 years ago
  97. 45c0766 Issue #14997: disable <F5> in idle shell window. by Andrew Svetlov · 13 years ago
  98. debda5d Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file. Solve a 2.7 bootstrap issue by Jesus Cea · 13 years ago
  99. 3e94e14 Backed out changeset 5abacebec9d2 by Jesus Cea · 13 years ago
  100. 82a3924 Backed out changeset c73b90b6dadd by Jesus Cea · 13 years ago