1. 75fb816 Issue #23184: idle tests, remove unused names and imports. by Terry Jan Reedy · 9 years ago
  2. 038c16b Issue #23184: idlelib, remove more unused names and imports. by Terry Jan Reedy · 9 years ago
  3. 2733618 idlelib: remove unused names and imports (one is a duplicate import). by Terry Jan Reedy · 9 years ago
  4. c58cca5 asyncio: Use 'collections.abc.Coroutine' in asyncio.iscoroutine (in 3.5) by Yury Selivanov · 9 years ago
  5. d08c363 Sync asyncio code from default branch. by Yury Selivanov · 9 years ago
  6. 3a81f9b Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers. by Berker Peksag · 9 years ago
  7. e8944cb asyncio: Make sure sys.set_coroutine_wrapper is called *only* when loop is running. by Yury Selivanov · 9 years ago
  8. ea6d559 Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  9. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 9 years ago
  10. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 9 years ago
  11. 740169c Sync asyncio changes from the main repo. by Yury Selivanov · 9 years ago
  12. 65bcdd7 ensure .keywords is always a dict by Benjamin Peterson · 9 years ago
  13. b0fc24b Upgrade setuptools to 15.2 by Donald Stufft · 9 years ago
  14. 7e63b36 Issue #21520: test_zipfile no longer fails if the word 'bad' appears by Larry Hastings · 9 years ago
  15. 4b5367c Fixed English in error message. by Serhiy Storchaka · 9 years ago
  16. e130503 Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and by Serhiy Storchaka · 9 years ago
  17. ab91478 Issue #24125: Saved error's line and column numbers when an error is occured by Serhiy Storchaka · 9 years ago
  18. 8c59816 merge 3.3 (#24096) by Benjamin Peterson · 9 years ago
  19. 122f4b1 merge 3.3 (#24094) by Benjamin Peterson · 9 years ago
  20. 0a9933e Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions without __name__. by Guido van Rossum · 9 years ago
  21. 71f73ca Issue #23713: Fixed fragility of test_imap_unordered_handle_iterable_exception. by Serhiy Storchaka · 9 years ago
  22. 3bd66ab Use more precise Tcl version checks in tests. by Serhiy Storchaka · 9 years ago
  23. 3af7a38 Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than 8.5.8 by Serhiy Storchaka · 9 years ago
  24. 462c357 Fixed full Tcl version parsing in tests for pre-final versions. by Serhiy Storchaka · 9 years ago
  25. 333518e #15183: clarify timeit documentation to say that setup statement isn't timed by Andrew Kuchling · 9 years ago
  26. b6076fb Issue #23008: Fixed resolving attributes with boolean value is False in pydoc. by Serhiy Storchaka · 9 years ago
  27. d73aca7 do not call into python api if an exception is set (#24022) by Benjamin Peterson · 9 years ago
  28. 0bd16bc Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge. by Guido van Rossum · 9 years ago
  29. 2b0d200 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  30. 2ef7c47 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 9 years ago
  31. 16b2e4f Issue #23842: Added tests for os.major(), os.minor() and os.makedev(). by Serhiy Storchaka · 9 years ago
  32. 6a69466 Backported tests from issue #20175. by Serhiy Storchaka · 9 years ago
  33. f4bbc53 #23925: stop (eg) PYTHONSTARTUP from causing test_cmd_line failure. by R David Murray · 9 years ago
  34. 50db6ac Issue #23956: Fix typo in imp.py docstring. by Zachary Ware · 9 years ago
  35. 34c9be7 Issue #23811: Add missing newline to the PyCompileError error message. by Berker Peksag · 9 years ago
  36. 8b963c5 #17898: reset k and v so that the loop doesn't use an old value by Andrew Kuchling · 9 years ago
  37. 770b08e #23883: add names missing from __all__ (l*gettext, bind_textdomain_codeset) by Andrew Kuchling · 9 years ago
  38. 5f6684e Issue #23310: Fix MagicMock's initializer to work with __methods__. by Łukasz Langa · 9 years ago
  39. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  40. 52a3b74 remove useless word (closes #23929) by Benjamin Peterson · 9 years ago
  41. 85e3ee7 Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  42. 20d31b5 Merge by Antoine Pitrou · 9 years ago
  43. 25f85d4 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 9 years ago
  44. 4c9c848 Issue #17202: Add .bat to .hgeol to force them to CRLF. by Zachary Ware · 9 years ago
  45. e173c07 Unittest for Issue 21511 by Christie Wilson bobcatfish@gmail.com. by Guido van Rossum · 9 years ago
  46. ecb75e2 Issue #23062: Add a test for suppressing --version with argparse.SUPPRESS. by Berker Peksag · 9 years ago
  47. 7e7a3db Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  48. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  49. 1572944 reduce memory usage of test (closes #23369) by Benjamin Peterson · 10 years ago
  50. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  51. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  52. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
  53. 68389ea remove extra ws by Benjamin Peterson · 10 years ago
  54. e3bfe19 fix possible overflow in encode_basestring_ascii (closes #23369) by Benjamin Peterson · 10 years ago
  55. 4dbc305 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  56. 3f95292 Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis by Serhiy Storchaka · 10 years ago
  57. 81b7374 merge 3.2 (#16043) by Benjamin Peterson · 10 years ago
  58. 4e9cefa add a default limit for the amount of data xmlrpclib.gzip_decode will return (closes #16043) by Benjamin Peterson · 10 years ago
  59. e71abcc merge 3.2 by Benjamin Peterson · 10 years ago
  60. 258f3f0 use pythontest.net for url fragment test by Benjamin Peterson · 10 years ago
  61. 97751fa merge 3.2 by Benjamin Peterson · 10 years ago
  62. 863c962 move idna test domain to pythontest.net by Benjamin Peterson · 10 years ago
  63. 4d85689 test is cpython only by Benjamin Peterson · 10 years ago
  64. e1bd38c fix integer overflow in unicode case operations (closes #22643) by Benjamin Peterson · 10 years ago
  65. 18e8972 Bump to 3.3.6 by Georg Brandl · 10 years ago
  66. 439d885 Bump to 3.2.6 by Georg Brandl · 10 years ago
  67. b3ac843 #16040: fix unlimited read from connection in nntplib. by Georg Brandl · 10 years ago
  68. e800a0e Bump to 3.2.6rc1 by Georg Brandl · 10 years ago
  69. 76e73f8 Bump to 3.3.6rc1 by Georg Brandl · 10 years ago
  70. 4480d30 ref #19855: skip uuid test_find_mac on non-Posix as in later branches by Georg Brandl · 10 years ago
  71. 51c1162 Issue #19855: uuid.getnode() on Unix now looks on the PATH for the by Georg Brandl · 10 years ago
  72. 3bc3567 Backport b533cc11d114 to fix intermittent test_urllibnet failures. by Georg Brandl · 10 years ago
  73. 786c8e7 Fix-up for 0f362676460d: add missing size argument to SSLFakeFile.readline(), as in 2.6 backport 8a6def3add5b by Georg Brandl · 10 years ago
  74. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  75. e025b52 Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes. by Senthil Kumaran · 10 years ago
  76. 2a42a0b Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces. by Senthil Kumaran · 10 years ago
  77. 7d0b8f9 Lax cookie parsing in http.cookies could be a security issue when combined by Antoine Pitrou · 10 years ago
  78. 217f4cd Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  79. 915a30f Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  80. 0fd3972 merge 3.2 by Benjamin Peterson · 10 years ago
  81. 314dc12 expect the correct platform-dependent linesep by Benjamin Peterson · 10 years ago
  82. 6cd1954 merge 3.2 (#21766) by Benjamin Peterson · 10 years ago
  83. 73b8b1c url unquote the path before checking if it refers to a CGI script (closes #21766) by Benjamin Peterson · 10 years ago
  84. 842f00e Suppress a couple more DeprecationWarnings in the test suite. by R David Murray · 10 years ago
  85. 93da9b5 Use assertRaisesRegex instead of deprecated assertRaisesRegexp. by Serhiy Storchaka · 9 years ago
  86. 7ecfc82 Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not available. by Berker Peksag · 9 years ago
  87. 52c0c33 Skip nntplib tests when transient errors captured. by Berker Peksag · 9 years ago
  88. c9d11c3 Issue #23879, asyncio: SelectorEventLoop.sock_connect() must not call connect() by Victor Stinner · 9 years ago
  89. 033c58a remove smtpd dead code (closes #23873) by Benjamin Peterson · 9 years ago
  90. b32fb8d Update pip to 6.1.1 by Donald Stufft · 9 years ago
  91. 4bea461 Issue #23881: ftp://gatekeeper.research.compaq.com/ and ftp://ftp.debian.org/ by Victor Stinner · 9 years ago
  92. ab73e65 Issue #23881: urllib.request.ftpwrapper constructor now closes the socket if by Victor Stinner · 9 years ago
  93. fe508d1 Upgrade pip to 6.1.0 and setuptools to 15.0 by Donald Stufft · 9 years ago
  94. 6fbeae4 Issue #22977: Remove unconditional import of ctypes. by Serhiy Storchaka · 9 years ago
  95. 0c80331 fix extended command syntax (closes #23872) by Benjamin Peterson · 9 years ago
  96. 9a6e201 Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always by Serhiy Storchaka · 9 years ago
  97. c9ba38c Open files in binary mode to avoid newlines transformation. by Serhiy Storchaka · 9 years ago
  98. 9fa84b2 Issue #23825: Fixed test_idle under -OO. by Serhiy Storchaka · 9 years ago
  99. 9f8a891 Escaped backslashes in docstrings. by Serhiy Storchaka · 9 years ago
  100. 8077434 Issue #22351. MockSslTests tests in test_nntplib now are reported if skipped. by Serhiy Storchaka · 9 years ago