1. 50451eb Issue #24326: Fixed audioop.ratecv() with non-default weightB argument. by Serhiy Storchaka · 9 years ago
  2. 1ad08a5 asyncio: Drop some useless code from tasks.py. by Yury Selivanov · 9 years ago
  3. 46c759d Issue 24298: Fix signature() to properly unwrap wrappers around bound methods by Yury Selivanov · 9 years ago
  4. 82d8f06 merge 3.3 by Benjamin Peterson · 9 years ago
  5. 86c3a3b merge 3.2 by Benjamin Peterson · 9 years ago
  6. b03856a keep distutils version in sync with python version automatically by Benjamin Peterson · 9 years ago
  7. 387729e Issue #23840: tokenize.open() now closes the temporary binary file on error to by Victor Stinner · 9 years ago
  8. c4dc43e Update idlelib/NEWS.txt. 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. 7bf0d5a Upgrade pip to 7.0.1 by Donald Stufft · 9 years ago
  13. 08d230a Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  14. df9ba36 Upgrade pip to 7.0 and setuptools to 16.0 by Donald Stufft · 9 years ago
  15. bf341fb Issue 23898: Fix inspect.classify_class_attrs() to work with __eq__ by Yury Selivanov · 9 years ago
  16. 4faf5c5 Issue #23985: Fixed integer overflow in iterator object. Patch by by Serhiy Storchaka · 9 years ago
  17. cbfe07e Issue 24215: Added tests for more builtin types in test_pprint. by Serhiy Storchaka · 9 years ago
  18. c0e0022 Issue #24134: Use assertRaises() in context manager form in test_slice to by Serhiy Storchaka · 9 years ago
  19. ef94869 Issue #24245: Eliminated senseless expect clauses that have no any effect in by Serhiy Storchaka · 9 years ago
  20. 5d6b7b1 Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again by Serhiy Storchaka · 9 years ago
  21. 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
  22. 6371446 #24215: also back out changeset that broke test_trace in 3.4. by R David Murray · 9 years ago
  23. ae760c0 Issue #6598: Increased time precision and random number range in by Serhiy Storchaka · 9 years ago
  24. 5bf3120 Issue #24091: Fixed various crashes in corner cases in C implementation of by Serhiy Storchaka · 9 years ago
  25. ca7fecb Issue #24102: Fixed exception type checking in standard error handlers. by Serhiy Storchaka · 9 years ago
  26. 610a51f Issue #23757: Only call the concrete list API for exact lists. by Raymond Hettinger · 9 years ago
  27. 296c66e Issue #24199: Make idlever module self updating. Syop using it in aboutDialog. by Terry Jan Reedy · 9 years ago
  28. a0b8a50 Issue #24212: Put reference in idle.__main__ to issue with explanation. by Terry Jan Reedy · 9 years ago
  29. 5dbb40f Added tests for more builtin types. Made test_pprint discoverable. by Serhiy Storchaka · 9 years ago
  30. 031d064 Issue #23964: Update idlelib/idle_test/README.txt. first patch by Al Sweigart. by Terry Jan Reedy · 9 years ago
  31. a7d00c2 Reverted issue #24134 changes (except new tests). by Serhiy Storchaka · 9 years ago
  32. 75fb816 Issue #23184: idle tests, remove unused names and imports. by Terry Jan Reedy · 9 years ago
  33. 038c16b Issue #23184: idlelib, remove more unused names and imports. by Terry Jan Reedy · 9 years ago
  34. 2733618 idlelib: remove unused names and imports (one is a duplicate import). by Terry Jan Reedy · 9 years ago
  35. c58cca5 asyncio: Use 'collections.abc.Coroutine' in asyncio.iscoroutine (in 3.5) by Yury Selivanov · 9 years ago
  36. d08c363 Sync asyncio code from default branch. by Yury Selivanov · 9 years ago
  37. 3a81f9b Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers. by Berker Peksag · 9 years ago
  38. e8944cb asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is running. by Yury Selivanov · 9 years ago
  39. ea6d559 Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  40. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 9 years ago
  41. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 9 years ago
  42. 740169c Sync asyncio changes from the main repo. by Yury Selivanov · 9 years ago
  43. 65bcdd7 ensure .keywords is always a dict by Benjamin Peterson · 9 years ago
  44. b0fc24b Upgrade setuptools to 15.2 by Donald Stufft · 9 years ago
  45. 7e63b36 Issue #21520: test_zipfile no longer fails if the word 'bad' appears by Larry Hastings · 9 years ago
  46. 4b5367c Fixed English in error message. by Serhiy Storchaka · 9 years ago
  47. e130503 Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and by Serhiy Storchaka · 9 years ago
  48. ab91478 Issue #24125: Saved error's line and column numbers when an error is occured by Serhiy Storchaka · 9 years ago
  49. 8c59816 merge 3.3 (#24096) by Benjamin Peterson · 9 years ago
  50. deff2b7 be more robust against the filters list changing under us (closes #24096) by Benjamin Peterson · 9 years ago
  51. 122f4b1 merge 3.3 (#24094) by Benjamin Peterson · 9 years ago
  52. 501182a just sort the items tuple directly (closes #24094) by Benjamin Peterson · 9 years ago
  53. 0a9933e Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions without __name__. by Guido van Rossum · 9 years ago
  54. 71f73ca Issue #23713: Fixed fragility of test_imap_unordered_handle_iterable_exception. by Serhiy Storchaka · 9 years ago
  55. 3bd66ab Use more precise Tcl version checks in tests. by Serhiy Storchaka · 9 years ago
  56. 3af7a38 Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than 8.5.8 by Serhiy Storchaka · 9 years ago
  57. 462c357 Fixed full Tcl version parsing in tests for pre-final versions. by Serhiy Storchaka · 9 years ago
  58. 333518e #15183: clarify timeit documentation to say that setup statement isn't timed by Andrew Kuchling · 9 years ago
  59. b6076fb Issue #23008: Fixed resolving attributes with boolean value is False in pydoc. by Serhiy Storchaka · 9 years ago
  60. d73aca7 do not call into python api if an exception is set (#24022) by Benjamin Peterson · 9 years ago
  61. 0bd16bc Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge. by Guido van Rossum · 9 years ago
  62. 2b0d200 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  63. 2ef7c47 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 9 years ago
  64. 16b2e4f Issue #23842: Added tests for os.major(), os.minor() and os.makedev(). by Serhiy Storchaka · 9 years ago
  65. 6a69466 Backported tests from issue #20175. by Serhiy Storchaka · 9 years ago
  66. f4bbc53 #23925: stop (eg) PYTHONSTARTUP from causing test_cmd_line failure. by R David Murray · 9 years ago
  67. 50db6ac Issue #23956: Fix typo in imp.py docstring. by Zachary Ware · 9 years ago
  68. 34c9be7 Issue #23811: Add missing newline to the PyCompileError error message. by Berker Peksag · 9 years ago
  69. 8b963c5 #17898: reset k and v so that the loop doesn't use an old value by Andrew Kuchling · 9 years ago
  70. 770b08e #23883: add names missing from __all__ (l*gettext, bind_textdomain_codeset) by Andrew Kuchling · 9 years ago
  71. 5f6684e Issue #23310: Fix MagicMock's initializer to work with __methods__. by Łukasz Langa · 9 years ago
  72. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  73. 52a3b74 remove useless word (closes #23929) by Benjamin Peterson · 9 years ago
  74. 85e3ee7 Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  75. 20d31b5 Merge by Antoine Pitrou · 9 years ago
  76. 25f85d4 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 9 years ago
  77. 4c9c848 Issue #17202: Add .bat to .hgeol to force them to CRLF. by Zachary Ware · 9 years ago
  78. e173c07 Unittest for Issue 21511 by Christie Wilson bobcatfish@gmail.com. by Guido van Rossum · 9 years ago
  79. ecb75e2 Issue #23062: Add a test for suppressing --version with argparse.SUPPRESS. by Berker Peksag · 9 years ago
  80. 7e7a3db Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  81. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 9 years ago
  82. 1572944 reduce memory usage of test (closes #23369) by Benjamin Peterson · 9 years ago
  83. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 9 years ago
  84. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 9 years ago
  85. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 9 years ago
  86. 68389ea remove extra ws by Benjamin Peterson · 9 years ago
  87. e3bfe19 fix possible overflow in encode_basestring_ascii (closes #23369) by Benjamin Peterson · 9 years ago
  88. 4dbc305 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 9 years ago
  89. 3f95292 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 9 years ago
  90. 81b7374 merge 3.2 (#16043) by Benjamin Peterson · 10 years ago
  91. 4e9cefa add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043) by Benjamin Peterson · 10 years ago
  92. e71abcc merge 3.2 by Benjamin Peterson · 10 years ago
  93. 258f3f0 use pythontest.net for url fragment test by Benjamin Peterson · 10 years ago
  94. 97751fa merge 3.2 by Benjamin Peterson · 10 years ago
  95. 863c962 move idna test domain to pythontest.net by Benjamin Peterson · 10 years ago
  96. 4d85689 test is cpython only by Benjamin Peterson · 10 years ago
  97. e1bd38c fix integer overflow in unicode case operations (closes #22643) by Benjamin Peterson · 10 years ago
  98. 18e8972 Bump to 3.3.6 by Georg Brandl · 10 years ago
  99. 439d885 Bump to 3.2.6 by Georg Brandl · 10 years ago
  100. b3ac843 #16040: fix unlimited read from connection in nntplib. by Georg Brandl · 10 years ago