1. e11fecb Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  2. 19e568d Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  3. 12489d9 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  4. 3aee222 Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  5. f44c9da Rename a local variable for readability and change a "this can't by Gregory P. Smith · 12 years ago
  6. 3d8e776 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  7. 6f62b58 move note to the right section by Gregory P. Smith · 12 years ago
  8. 2ec8233 Fixes issue #14396: Handle the odd rare case of waitpid returning 0 when by Gregory P. Smith · 12 years ago
  9. 9463e3a Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  10. 7ee9555 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 12 years ago
  11. ee7889d Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 12 years ago
  12. 5c89b4e Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  13. df3abec Link set and frozenset function docs to their class definitions (issue #16436). by Chris Jerdonek · 12 years ago
  14. 4ed4b1c Improve FAQ link in documentation (for issue #16435). by Chris Jerdonek · 12 years ago
  15. 9bf379e #13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  16. 8b6b176 #16440: fix exception type and clarify example. by Ezio Melotti · 12 years ago
  17. 5c90436 Issue #16439: Fix markup in example for stdtypes. by Andrew Svetlov · 12 years ago
  18. 0e9a065 Issue #16435: Link in tutorial now points to python3 FAQ. by Andrew Svetlov · 12 years ago
  19. 90eea97 #16433: fix docstring of assertNotEqual. by Ezio Melotti · 12 years ago
  20. 78b18d4 #11481: update copyreg docs and add example. by Ezio Melotti · 12 years ago
  21. 44dbd07 Merge heads. by Ezio Melotti · 12 years ago
  22. 402f75d #10385: use the mod role in subprocess docs. by Ezio Melotti · 12 years ago
  23. 5c6b3e2 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  24. 692b023 Record a known crasher from #6717 by Nick Coghlan · 12 years ago
  25. 3907994 Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. by Nadeem Vawda · 12 years ago
  26. 6c5f521 #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. by Ezio Melotti · 12 years ago
  27. 8cd1c76 Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method. by Mark Dickinson · 12 years ago
  28. b87f82f #16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz. by Ezio Melotti · 12 years ago
  29. 6d26ade Fix compilation on Windows by Christian Heimes · 12 years ago
  30. 540da76 #16336: fix input checking in the surrogatepass error handler. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  31. 8af179e Fix a couple typos in Misc/NEWS. by Ezio Melotti · 12 years ago
  32. 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
  33. 11f3f17 Link to mapping glossary entry in "Mapping Types - dict" and os.environ docs. by Chris Jerdonek · 12 years ago
  34. 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
  35. dedfa9b #4711: break long words in the docs sidebar to avoid overflow. by Ezio Melotti · 12 years ago
  36. 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
  37. 4552e3f Grammar touchup. by Georg Brandl · 12 years ago
  38. d183767 Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu by Andrew Svetlov · 12 years ago
  39. 5bb4207 Reword set docs to use *proper subset/superset* terminology. by Andrew Svetlov · 12 years ago
  40. 1491cbd Issue #14893: Add function annotation example to function tutorial. by Andrew Svetlov · 12 years ago
  41. e4ad37e Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
  42. 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
  43. 42d5c41 Change docstring for xdrlib.Error to use new style exceptions. by Andrew Svetlov · 12 years ago
  44. bcac6ad Issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  45. eda1f4c Issue #16377: Fix bisect unittest. by Andrew Svetlov · 12 years ago
  46. 01e1e35 merge heads by Andrew Svetlov · 12 years ago
  47. 5f91ad3 Issue #14900: document added sort keys for profile stats. by Andrew Svetlov · 12 years ago
  48. 6ae568b Issue #16348: Fix incorrect documentation for Decimal.remainder_near. by Mark Dickinson · 12 years ago
  49. 9892f52 avoid a function call with redundant checks for dict size by Benjamin Peterson · 12 years ago
  50. 37d2c99 fix spelling by Benjamin Peterson · 12 years ago
  51. 275c848 merge heads by Benjamin Peterson · 12 years ago
  52. d1f2cb3 only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 12 years ago
  53. 64085e3 Closes #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT! by Jesus Cea · 12 years ago
  54. a2959ce #16371: fix up the English a bit more. by R David Murray · 12 years ago
  55. ec42255 Issue #16371: fix typo in ctypes documentation. by Andrew Svetlov · 12 years ago
  56. e1fa22a Issue #16370: Mention Py_SetProgramName in example for very high level embedding. by Andrew Svetlov · 12 years ago
  57. 4deb16d Remove already dropped function PySys_GetFile from documentation. by Andrew Svetlov · 12 years ago
  58. 6a5c7c3 Fix docstring for deque ctor to mark iterable parameter optional by Andrew Svetlov · 12 years ago
  59. c431128 initialize more global type objects (closes #16369) by Benjamin Peterson · 12 years ago
  60. e9aeca7 Fix #16197. Update docstrings and documentation to match winreg code. by Brian Curtin · 12 years ago
  61. 92c28ca #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 12 years ago
  62. 1b863eb Fix regression from issue #16262 by Ross Lagerwall · 12 years ago
  63. 8b7f9f5 Remove unneeded "Release" and "Date" markers from doc index pages. by Chris Jerdonek · 12 years ago
  64. a1952d4 Add test for BZ2Decompressor.decompress("") after end of stream. by Nadeem Vawda · 12 years ago
  65. 6a935d9 merge heads by Georg Brandl · 12 years ago
  66. 75f0020 Remove confusing "Release" and "Date" markers from whatsnews. by Georg Brandl · 12 years ago
  67. 21b1024 merge heads by Andrew Svetlov · 12 years ago
  68. 2ec53be Issue #14570: Document json sort_keys parameter properly. by Andrew Svetlov · 12 years ago
  69. 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
  70. 579d5cd changeset: 80007:49e4541f2aef by Georg Brandl · 12 years ago
  71. fffc25d #8040: fix jQuery incompatibility by Georg Brandl · 12 years ago
  72. c3bf78a #15889: make regrtest --start succeed in more cases. by R David Murray · 12 years ago
  73. e5b1023 #8040: fix the version. by Ezio Melotti · 12 years ago
  74. 58864b3 #8040: enable the versionswitcher for the autobuild-dev target. by Ezio Melotti · 12 years ago
  75. 380ce65 #8040: add a version switcher to the documentation. Patch by Yury Selivanov. by Ezio Melotti · 12 years ago
  76. 252cd0e #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 12 years ago
  77. bc876a2 Automated merge with file:///home/vagrant/3.3 by Senthil Kumaran · 12 years ago
  78. 847c33c Include mention of jenkins as an example framework for doing CI by Senthil Kumaran · 12 years ago
  79. f933302 #15043: Improve test_gdb support of gdb >= 7.4. by R David Murray · 12 years ago
  80. cad7b31 Issue #16250: Fix URLError invocation with proper args. by Senthil Kumaran · 12 years ago
  81. 45c4149 bounds check for bad data (thanks amaury) by Philip Jenvey · 12 years ago
  82. a20879f #16206: Improve examples about dict construction. by Ezio Melotti · 12 years ago
  83. c131b07 Fix formatting of syntax description of function definition. by Chris Jerdonek · 12 years ago
  84. 7646449 Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. by Mark Dickinson · 12 years ago
  85. 837cd06 #16210: combine the two type() docs. Patch by Pete Sevander. by Ezio Melotti · 12 years ago
  86. fdf0f27 Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu by Ned Deily · 12 years ago
  87. af38774 Closes #16294: 8 space indent in tutorial by Jesus Cea · 12 years ago
  88. c4c4842 - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. by Matthias Klose · 12 years ago
  89. 5f8f0d6 Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 12 years ago
  90. 66510fe Fix whacky spacking in test_wsgiref by Antoine Pitrou · 12 years ago
  91. ae247a5 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 12 years ago
  92. 2778d0d Issue #10405: Document IDLE context menus in Standard Library document by Ned Deily · 12 years ago
  93. 557c76c Fix compilation on Windows by Nick Coghlan · 12 years ago
  94. 62b4136 Fix broken test and replace redundant generator with a tuple by Nick Coghlan · 12 years ago
  95. c71b4c7 Issue #6074: Actually delete the source file in the test as intended by Nick Coghlan · 12 years ago
  96. 34937ce Issue #6074: Forward port Windows read-only source file fix from 2.7 by Nick Coghlan · 12 years ago
  97. 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
  98. 9104479 Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= sizeof(long). by Mark Dickinson · 12 years ago
  99. 5bf7f1f Clarify universal-newline wording in tutorial (issue #16266). by Chris Jerdonek · 12 years ago
  100. 0dccbe1 null merge by Andrew Svetlov · 12 years ago