1. f28fa66 Issue #5633: Fixed timeit when the statement is a string and the setup is not. by Serhiy Storchaka · 9 years ago
  2. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  3. 50451eb Issue #24326: Fixed audioop.ratecv() with non-default weightB argument. by Serhiy Storchaka · 9 years ago
  4. 46c759d Issue 24298: Fix signature() to properly unwrap wrappers around bound methods by Yury Selivanov · 9 years ago
  5. ca208a0 Moved Misc/NEWS entries to correct section and fix formatting. by Serhiy Storchaka · 9 years ago
  6. 387729e Issue #23840: tokenize.open() now closes the temporary binary file on error to by Victor Stinner · 9 years ago
  7. 410d77f Remove UTF-8 BOMs. by Serhiy Storchaka · 9 years ago
  8. 4cbb9e6 Add NEWS item for Idle. by Terry Jan Reedy · 9 years ago
  9. c4ae86e merge 3.3 (#22931) by Benjamin Peterson · 9 years ago
  10. d504f20 merge 3.2 (#22931) by Benjamin Peterson · 9 years ago
  11. 9bd476e allow square brackets in cookie values (closes #22931) by Benjamin Peterson · 9 years ago
  12. 08d230a Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  13. bf341fb Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__ by Yury Selivanov · 9 years ago
  14. 0978b5c Fixed issue number for issue #22939. by Serhiy Storchaka · 9 years ago
  15. 4faf5c5 Issue #23985: Fixed integer overflow in iterator object. Patch by by Serhiy Storchaka · 9 years ago
  16. 5d6b7b1 Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again by Serhiy Storchaka · 9 years ago
  17. 2545411 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. by Antoine Pitrou · 9 years ago
  18. ae760c0 Issue #6598: Increased time precision and random number range in by Serhiy Storchaka · 9 years ago
  19. ed9ed7f Fix typo in Nisc/NEWS. by Berker Peksag · 9 years ago
  20. 5bf3120 Issue #24091: Fixed various crashes in corner cases in C implementation of by Serhiy Storchaka · 9 years ago
  21. ca7fecb Issue #24102: Fixed exception type checking in standard error handlers. by Serhiy Storchaka · 9 years ago
  22. 0a29e89 Issue #21931: Fix error handling in msilib.FCICreate(). by Zachary Ware · 9 years ago
  23. 610a51f Issue #23757: Only call the concrete list API for exact lists. by Raymond Hettinger · 9 years ago
  24. 6558190 Issue #22155: News entry. by Terry Jan Reedy · 9 years ago
  25. a7d00c2 Reverted issue #24134 changes (except new tests). by Serhiy Storchaka · 9 years ago
  26. ea6d559 Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  27. 5d87ec2 Fix NEWS file. by Yury Selivanov · 9 years ago
  28. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 9 years ago
  29. 740169c Sync asyncio changes from the main repo. by Yury Selivanov · 9 years ago
  30. 37c4f78 add trailing slash by Benjamin Peterson · 9 years ago
  31. 65bcdd7 ensure .keywords is always a dict by Benjamin Peterson · 9 years ago
  32. 01b0883 Issue #20274: Remove ignored and erroneous "kwargs" parameters from three by Larry Hastings · 9 years ago
  33. 7e63b36 Issue #21520: test_zipfile no longer fails if the word 'bad' appears by Larry Hastings · 9 years ago
  34. e130503 Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and by Serhiy Storchaka · 9 years ago
  35. 8c59816 merge 3.3 (#24096) by Benjamin Peterson · 9 years ago
  36. deff2b7 be more robust against the filters list changing under us (closes #24096) by Benjamin Peterson · 9 years ago
  37. b9c04db Issue #23330: h2py now supports arbitrary filenames in #include. by Serhiy Storchaka · 9 years ago
  38. 122f4b1 merge 3.3 (#24094) by Benjamin Peterson · 9 years ago
  39. 501182a just sort the items tuple directly (closes #24094) by Benjamin Peterson · 9 years ago
  40. 0a9933e Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions without __name__. by Guido van Rossum · 9 years ago
  41. c6249a6 Defer deleted item decref until after the deque is restored to a consistent state. by Raymond Hettinger · 9 years ago
  42. 1dd8e71 Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. by Raymond Hettinger · 9 years ago
  43. 755640b update links by Benjamin Peterson · 9 years ago
  44. b0335ee improve phrasing by Benjamin Peterson · 9 years ago
  45. 64298ae Issue #24077: Fix typo in man page for -I command option: -s, not -S. by Ned Deily · 9 years ago
  46. 9df36c9 Issue #21354: PyCFunction_New function is exposed by python DLL again. by Andrew Svetlov · 9 years ago
  47. 7403e91 Issue #23996: Avoid a crash when a delegated generator raises an unnormalized StopIteration exception. Patch by Stefan Behnel. by Antoine Pitrou · 9 years ago
  48. 4403d7d Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes by Victor Stinner · 9 years ago
  49. bd91ee9 merge 3.3 (#24044) by Benjamin Peterson · 9 years ago
  50. 51454a6 merge 3.2 (#24044) by Benjamin Peterson · 9 years ago
  51. 0823ffb properly handle malloc failure (closes #24044) by Benjamin Peterson · 9 years ago
  52. d98c677 Issue #24031: make patchcheck now supports git checkouts, too. by Christian Heimes · 9 years ago
  53. 2097f53 Issue #24029: Document the name binding behavior for submodule imports. by Barry Warsaw · 9 years ago
  54. b6076fb Issue #23008: Fixed resolving attributes with boolean value is False in pydoc. by Serhiy Storchaka · 9 years ago
  55. d73aca7 do not call into python api if an exception is set (#24022) by Benjamin Peterson · 9 years ago
  56. 0bd16bc Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge. by Guido van Rossum · 9 years ago
  57. 2b0d200 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  58. 2ef7c47 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 9 years ago
  59. e0ac2be Issue #23998: PyImport_ReInitLock() now checks for lock allocation error by Christian Heimes · 9 years ago
  60. 418fd74 Issue #23998: PyImport_ReInitLock() now checks for lock allocation error by Christian Heimes · 9 years ago
  61. 34c9be7 Issue #23811: Add missing newline to the PyCompileError error message. by Berker Peksag · 9 years ago
  62. b3c30d9 Reword NEWS item a bit by Andrew Kuchling · 9 years ago
  63. 8b963c5 #17898: reset k and v so that the loop doesn't use an old value by Andrew Kuchling · 9 years ago
  64. 5f6684e Issue #23310: Fix MagicMock's initializer to work with __methods__. by Łukasz Langa · 9 years ago
  65. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  66. 85e3ee7 Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  67. 25f85d4 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 9 years ago
  68. bb5dbf8 Attribute Michael Dorman for his initial patch on issue #18402. by Zachary Ware · 9 years ago
  69. 7e7a3db Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  70. b779bfb fix possible overflow bugs in unicodedata (closes #23367) by Benjamin Peterson · 10 years ago
  71. 03f8612 merge 3.2 by Benjamin Peterson · 10 years ago
  72. 893cce9 remove RPM, since it's unused and unmaintained by Benjamin Peterson · 10 years ago
  73. 8ce6806 add overflow checking (closes #23361) by Benjamin Peterson · 10 years ago
  74. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  75. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  76. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
  77. e3bfe19 fix possible overflow in encode_basestring_ascii (closes #23369) by Benjamin Peterson · 10 years ago
  78. 4dbc305 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  79. 3f95292 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  80. 72c2a0f merge 3.2 (closes #23165) by Benjamin Peterson · 10 years ago
  81. f18bf6f add some overflow checks before multiplying (closes #23165) by Benjamin Peterson · 10 years ago
  82. 81b7374 merge 3.2 (#16043) by Benjamin Peterson · 10 years ago
  83. 4e9cefa add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043) by Benjamin Peterson · 10 years ago
  84. e1bd38c fix integer overflow in unicode case operations (closes #22643) by Benjamin Peterson · 10 years ago
  85. 18e8972 Bump to 3.3.6 by Georg Brandl · 10 years ago
  86. 439d885 Bump to 3.2.6 by Georg Brandl · 10 years ago
  87. b3ac843 #16040: fix unlimited read from connection in nntplib. by Georg Brandl · 10 years ago
  88. e800a0e Bump to 3.2.6rc1 by Georg Brandl · 10 years ago
  89. 4b16818 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
  90. 76e73f8 Bump to 3.3.6rc1 by Georg Brandl · 10 years ago
  91. ff3e5e3 Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX). by Georg Brandl · 10 years ago
  92. 51c1162 Issue #19855: uuid.getnode() on Unix now looks on the PATH for the by Georg Brandl · 10 years ago
  93. 736b801 prevent overflow in unicode_repr (closes #22520) by Benjamin Peterson · 10 years ago
  94. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  95. 42ff105 fix overflow checking in PyBytes_Repr (closes #22519) by Benjamin Peterson · 10 years ago
  96. 3bbb2e4 NEWS issue for #22518 by Benjamin Peterson · 10 years ago
  97. e025b52 Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes. by Senthil Kumaran · 10 years ago
  98. 7d0b8f9 Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  99. 217f4cd Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  100. 915a30f Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago