1. 540da76 #16336: fix input checking in the surrogatepass error handler. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  2. 8af179e Fix a couple typos in Misc/NEWS. by Ezio Melotti · 12 years ago
  3. c64bcbe #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 12 years ago
  4. 11f3f17 Link to mapping glossary entry in "Mapping Types - dict" and os.environ docs. by Chris Jerdonek · 12 years ago
  5. 0941d9f #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
  6. dedfa9b #4711: break long words in the docs sidebar to avoid overflow. by Ezio Melotti · 12 years ago
  7. 2cc3b4b #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. by Ezio Melotti · 12 years ago
  8. 4552e3f Grammar touchup. by Georg Brandl · 12 years ago
  9. d183767 Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu by Andrew Svetlov · 12 years ago
  10. 5bb4207 Reword set docs to use *proper subset/superset* terminology. by Andrew Svetlov · 12 years ago
  11. 1491cbd Issue #14893: Add function annotation example to function tutorial. by Andrew Svetlov · 12 years ago
  12. e4ad37e Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
  13. 9f69e79 Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. by Antoine Pitrou · 12 years ago
  14. 42d5c41 Change docstring for xdrlib.Error to use new style exceptions. by Andrew Svetlov · 12 years ago
  15. bcac6ad Issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  16. eda1f4c Issue #16377: Fix bisect unittest. by Andrew Svetlov · 12 years ago
  17. 01e1e35 merge heads by Andrew Svetlov · 12 years ago
  18. 5f91ad3 Issue #14900: document added sort keys for profile stats. by Andrew Svetlov · 12 years ago
  19. 6ae568b Issue #16348: Fix incorrect documentation for Decimal.remainder_near. by Mark Dickinson · 12 years ago
  20. 9892f52 avoid a function call with redundant checks for dict size by Benjamin Peterson · 12 years ago
  21. 37d2c99 fix spelling by Benjamin Peterson · 12 years ago
  22. 275c848 merge heads by Benjamin Peterson · 12 years ago
  23. d1f2cb3 only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 12 years ago
  24. 64085e3 Closes #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT! by Jesus Cea · 12 years ago
  25. a2959ce #16371: fix up the English a bit more. by R David Murray · 12 years ago
  26. ec42255 Issue #16371: fix typo in ctypes documentation. by Andrew Svetlov · 12 years ago
  27. e1fa22a Issue #16370: Mention Py_SetProgramName in example for very high level embedding. by Andrew Svetlov · 12 years ago
  28. 4deb16d Remove already dropped function PySys_GetFile from documentation. by Andrew Svetlov · 12 years ago
  29. 6a5c7c3 Fix docstring for deque ctor to mark iterable parameter optional by Andrew Svetlov · 12 years ago
  30. c431128 initialize more global type objects (closes #16369) by Benjamin Peterson · 12 years ago
  31. e9aeca7 Fix #16197. Update docstrings and documentation to match winreg code. by Brian Curtin · 12 years ago
  32. 92c28ca #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 12 years ago
  33. 1b863eb Fix regression from issue #16262 by Ross Lagerwall · 12 years ago
  34. 8b7f9f5 Remove unneeded "Release" and "Date" markers from doc index pages. by Chris Jerdonek · 12 years ago
  35. a1952d4 Add test for BZ2Decompressor.decompress("") after end of stream. by Nadeem Vawda · 12 years ago
  36. 6a935d9 merge heads by Georg Brandl · 12 years ago
  37. 75f0020 Remove confusing "Release" and "Date" markers from whatsnews. by Georg Brandl · 12 years ago
  38. 21b1024 merge heads by Andrew Svetlov · 12 years ago
  39. 2ec53be Issue #14570: Document json sort_keys parameter properly. by Andrew Svetlov · 12 years ago
  40. fb90c09 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 12 years ago
  41. 579d5cd changeset: 80007:49e4541f2aef by Georg Brandl · 12 years ago
  42. fffc25d #8040: fix jQuery incompatibility by Georg Brandl · 12 years ago
  43. c3bf78a #15889: make regrtest --start succeed in more cases. by R David Murray · 12 years ago
  44. e5b1023 #8040: fix the version. by Ezio Melotti · 12 years ago
  45. 58864b3 #8040: enable the versionswitcher for the autobuild-dev target. by Ezio Melotti · 12 years ago
  46. 380ce65 #8040: add a version switcher to the documentation. Patch by Yury Selivanov. by Ezio Melotti · 12 years ago
  47. 252cd0e #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 12 years ago
  48. bc876a2 Automated merge with file:///home/vagrant/3.3 by Senthil Kumaran · 12 years ago
  49. 847c33c Include mention of jenkins as an example framework for doing CI by Senthil Kumaran · 12 years ago
  50. f933302 #15043: Improve test_gdb support of gdb >= 7.4. by R David Murray · 12 years ago
  51. cad7b31 Issue #16250: Fix URLError invocation with proper args. by Senthil Kumaran · 12 years ago
  52. 45c4149 bounds check for bad data (thanks amaury) by Philip Jenvey · 12 years ago
  53. a20879f #16206: Improve examples about dict construction. by Ezio Melotti · 12 years ago
  54. c131b07 Fix formatting of syntax description of function definition. by Chris Jerdonek · 12 years ago
  55. 7646449 Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. by Mark Dickinson · 12 years ago
  56. 837cd06 #16210: combine the two type() docs. Patch by Pete Sevander. by Ezio Melotti · 12 years ago
  57. fdf0f27 Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu by Ned Deily · 12 years ago
  58. af38774 Closes #16294: 8 space indent in tutorial by Jesus Cea · 12 years ago
  59. c4c4842 - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. by Matthias Klose · 12 years ago
  60. 5f8f0d6 Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 12 years ago
  61. 66510fe Fix whacky spacking in test_wsgiref by Antoine Pitrou · 12 years ago
  62. ae247a5 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 12 years ago
  63. 2778d0d Issue #10405: Document IDLE context menus in Standard Library document by Ned Deily · 12 years ago
  64. 557c76c Fix compilation on Windows by Nick Coghlan · 12 years ago
  65. 62b4136 Fix broken test and replace redundant generator with a tuple by Nick Coghlan · 12 years ago
  66. c71b4c7 Issue #6074: Actually delete the source file in the test as intended by Nick Coghlan · 12 years ago
  67. 34937ce Issue #6074: Forward port Windows read-only source file fix from 2.7 by Nick Coghlan · 12 years ago
  68. 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
  69. 9104479 Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= sizeof(long). by Mark Dickinson · 12 years ago
  70. 5bf7f1f Clarify universal-newline wording in tutorial (issue #16266). by Chris Jerdonek · 12 years ago
  71. 0dccbe1 null merge by Andrew Svetlov · 12 years ago
  72. abfc7df Issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 12 years ago
  73. 1eff0fc Issue #15378: Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  74. e9cf97c Issue #16265: Fix collapsing of code sample in tutorial. by Andrew Svetlov · 12 years ago
  75. 45bb613 Issue #16257: make test_create_connection() handle ENETUNREACH. by Trent Nelson · 12 years ago
  76. 739fc54 Issue #15819: use standard autoconf preset output variables. by Trent Nelson · 12 years ago
  77. 3ed2cb5 Also add tests for TextIOWrapper.writelines() (issue #15744). by Antoine Pitrou · 12 years ago
  78. 131a489 Add tests for the writelines() method of file objects. by Antoine Pitrou · 12 years ago
  79. 6603118 Issue #15819: tweak logic in previous commit (617591e7d708). by Trent Nelson · 12 years ago
  80. 9effe69 Issue #15819: additional fixes for out-of-tree builds from read-only src. by Trent Nelson · 12 years ago
  81. ee892b9 Issue #16244: Remove file mode overrides. by Vinay Sajip · 12 years ago
  82. 4fab8f0 Issue #16225: Add additional note to tutorial about changing sequence while looping. by Chris Jerdonek · 12 years ago
  83. f341317 Issue #16206: Improve the documentation of the dict constructor. by Chris Jerdonek · 12 years ago
  84. 7a9953e skip if __doc__ is gone by Benjamin Peterson · 12 years ago
  85. 951a9e3 fix to work if __doc__ is removed by Benjamin Peterson · 12 years ago
  86. 7fa8222 Fix links to the __next__ method. by Ezio Melotti · 12 years ago
  87. 35cbf16 Make doctests pass in the functional howto. by Ezio Melotti · 12 years ago
  88. 45a101d Improve markup in functional.rst, and fix a couple of errors. by Ezio Melotti · 12 years ago
  89. af94724 Fix link to str.format() in docs. by Chris Jerdonek · 12 years ago
  90. 4639749 Issue #16199: Fix typo in 2to3 docs. Thanks to Mark Lawrence for the report. by Chris Jerdonek · 12 years ago
  91. 0b960f5 Fix #16176. Properly identify Windows 8 via platform.platform() by Brian Curtin · 12 years ago
  92. cc32a68 Fix placement of shell=True warning in subprocess.Popen() docs. by Chris Jerdonek · 12 years ago
  93. 4a4a02b Issue #16115: Make further improvements to subprocess.Popen() documentation. by Chris Jerdonek · 12 years ago
  94. a1ff83e merge 3.2 heads by Georg Brandl · 12 years ago
  95. 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
  96. 5591b02 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  97. a256841 Issue #16174: Fix suggested usage of dummy_threading module. by Andrew Svetlov · 12 years ago
  98. 1ed9847 Fix Issue 15922: make howto/urllib2.rst doctests pass. by Senthil Kumaran · 12 years ago
  99. b5ca932 Issue #16168: Use specified socket type for domain sockets in SysLogHandler. by Vinay Sajip · 12 years ago
  100. 470ee39 Issue #16115: Improve subprocess.Popen() documentation around args, shell, and executable arguments. by Chris Jerdonek · 12 years ago