1. 10cbb1e Fixed new Tkinter tests added in issue #21522 with Tk 8.4. by Serhiy Storchaka · 10 years ago
  2. 8447c70 Issue #14710: Fix both pkgutil.find_loader() and get_loader() to not by Brett Cannon · 10 years ago
  3. 0652664 Issue #21538: The plistlib module now supports loading of binary plist files by Serhiy Storchaka · 10 years ago
  4. f01fffe Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), by Serhiy Storchaka · 10 years ago
  5. 9961405 Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler. by Antoine Pitrou · 10 years ago
  6. 93668f4 asyncio: test_base_events: use mock.Mock instead of unittest.mock.Mock to by Victor Stinner · 10 years ago
  7. b7b56e9 merge heads by Terry Jan Reedy · 10 years ago
  8. ab4fd44 Issue #21477: idle htests - lower case function names, other cleanups. by Terry Jan Reedy · 10 years ago
  9. 5c26a8a Version bump for 3.4.1. by Larry Hastings · 10 years ago
  10. d08aa47 Rebuild pydoc topics. by Larry Hastings · 10 years ago
  11. 3a260d2 Merge. by Larry Hastings · 10 years ago
  12. b1a1ec3 Upgrade pip to 1.5.6 by Donald Stufft · 10 years ago
  13. 5eb6b39 support pep 3118 format strings for ctypes objects with nontrivial shapes (closes #10744) by Benjamin Peterson · 10 years ago
  14. 6936159 Issue #18104: revise docstrings, remove obsolete comments. by Terry Jan Reedy · 10 years ago
  15. 429b59e Issue #20998: Fixed re.fullmatch() of repeated single character pattern by Serhiy Storchaka · 10 years ago
  16. 946cfc3 Issue #21075: fileinput.FileInput now reads bytes from standard stream if by Serhiy Storchaka · 10 years ago
  17. e2d6690 Issue #21497: faulthandler functions now raise a better error if sys.stderr is by Victor Stinner · 10 years ago
  18. e1e04ad Backed out changeset 6ceedbd88b5f by Victor Stinner · 10 years ago
  19. b78c448 Issue #21488: Add support of keyword arguments for codecs.encode and codecs.decode by Victor Stinner · 10 years ago
  20. 23042cd Issue #21470: Do a better job seeding the random number generator by Raymond Hettinger · 10 years ago
  21. 2f46a0e Issue #21499: Ignore __builtins__ in several test_importlib.test_api tests. by Eric Snow · 10 years ago
  22. 7664eb0 Fix test-order-dependend asyncio test failure caused by rev 909ea8cc86bbab92dbb6231668f403b7360f30fa. by Guido van Rossum · 10 years ago
  23. 15bec9c - Issue #17756: Fix test_code test when run from the installed location. by doko@ubuntu.com · 10 years ago
  24. 122541b Issue 21469: Mitigate risk of false positives with robotparser. by Raymond Hettinger · 10 years ago
  25. 08197a4 Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject. by Eric Snow · 10 years ago
  26. 0cc45ba Issue #21398: Fix an unicode error in the pydoc pager when the documentation by Victor Stinner · 10 years ago
  27. 7fe1049 Issue #21422: Add a test to check that bool << int and bool >> int return an int by Victor Stinner · 10 years ago
  28. bf88ffb asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if data exceeds buffer limit. by Guido van Rossum · 10 years ago
  29. 8386fda whitespace by Terry Jan Reedy · 10 years ago
  30. 06313b7 Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin by Terry Jan Reedy · 10 years ago
  31. 5e6b5f2 Try to fix issue #21425 workaround for shared library builds by Antoine Pitrou · 10 years ago
  32. dab4e8a Fix printing out error message when test fails and run with -bb by Antoine Pitrou · 10 years ago
  33. 6b4b8d0 Try workaround for test issues in #21425 by Antoine Pitrou · 10 years ago
  34. 9845c7e Issue #21425: Fix flushing of standard streams in the interactive interpreter. by Antoine Pitrou · 10 years ago
  35. 3d1bc60 asyncio: Upstream issue #167: remove dead code, by Marc Schlaich. by Guido van Rossum · 10 years ago
  36. 5fbc7b1 Issue #21435: Segfault in gc with cyclic trash by Tim Peters · 10 years ago
  37. c644e7c Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  38. e5de66e - Issue #17752: Fix distutils tests when run from the installed location. by doko@ubuntu.com · 10 years ago
  39. e252446 #21300: Clean up the docs for the email "policy" arguments. by R David Murray · 10 years ago
  40. 3d139d8 asyncio: Fix the second half of issue #21447: race in _write_to_self(). by Guido van Rossum · 10 years ago
  41. 95e0b0d Version bump for 3.4.1rc1. by Larry Hastings · 10 years ago
  42. 9147a96 Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. by Larry Hastings · 10 years ago
  43. 88b5b6d Issue #18604: Skip the Tk instantiation test on OS X because it can by Ned Deily · 10 years ago
  44. 3d678e3 use with blocks to make sure files are closed by Benjamin Peterson · 10 years ago
  45. f24600e improve test coverage of filecmp (closes #21357) by Benjamin Peterson · 10 years ago
  46. ceced6b Issue #18604: Consolidated checks for GUI availability. by Zachary Ware · 10 years ago
  47. 8fb74a3 Issue #21374: Fix pickling of DecimalTuple. by Stefan Krah · 10 years ago
  48. da25109 Closes issue #21316: mark test_devpoll to be meaningfull only for Solaris by Jesus Cea · 10 years ago
  49. 26f82ef Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 10 years ago
  50. 9681022 Issue #9815: assertRaises now tries to clear references to local variables in the exception's traceback. by Antoine Pitrou · 10 years ago
  51. 871dfc4 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 10 years ago
  52. 94ba146 asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. by Guido van Rossum · 10 years ago
  53. 83c1ddd asyncio: Be careful accessing instance variables in __del__ (closes #21340). by Guido van Rossum · 10 years ago
  54. e3083d3 make operations on closed dumb databases raise a consistent exception (closes #19385) by Benjamin Peterson · 10 years ago
  55. d4992dc shallow defaults to 'True' not '1' (closes #21355) by Benjamin Peterson · 10 years ago
  56. e472aea Issue #21207: Detect when the os.urandom cached fd has been closed or replaced, and open it anew. by Antoine Pitrou · 10 years ago
  57. 86fe53e #21225: copy docstrings from base classes by Andrew Kuchling · 10 years ago
  58. dca807b Issue #21346: Fix typo, make message consistent in test_itertools. by Zachary Ware · 10 years ago
  59. ab2719f fix the test on windows which has different return codes from killed children. by Gregory P. Smith · 10 years ago
  60. d65ba51 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  61. cb5ec77 Issue #21127: Path objects can now be instantiated from str subclass instances (such as numpy.str_). by Antoine Pitrou · 10 years ago
  62. 9573638 Issue #21138: Change default reformat paragraph width to PEP 8's 72. by Terry Jan Reedy · 10 years ago
  63. d5d4c4e Issue 21284: Idle: make test_formatparagraph pass even when a user changes the by Terry Jan Reedy · 10 years ago
  64. 6117e5d urllib.response object to use _TemporaryFileWrapper (and _TemporaryFileCloser) by Senthil Kumaran · 10 years ago
  65. 9077d24 #12220: improve minidom error when URI contains spaces. by R David Murray · 10 years ago
  66. 09ae544 Issue #11571: Ensure that the turtle window becomes the topmost window by Ned Deily · 10 years ago
  67. f31b478 Issue #21311: Avoid exception in _osx_support with non-standard compiler by Ned Deily · 10 years ago
  68. 3d050dd #9364: Improve the text printed by help(pydoc) and help(help). by R David Murray · 10 years ago
  69. 658af31 Issue #21200: Return None from pkgutil.get_loader() when __spec__ is missing. by Eric Snow · 10 years ago
  70. 0cbc768 asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). by Guido van Rossum · 10 years ago
  71. 4a173bc Fixes for KFreeBSD and the Hurd: by doko@ubuntu.com · 10 years ago
  72. fa873f6 remove superfluous and useless line by Benjamin Peterson · 10 years ago
  73. c844b00 use the called property of the run_pip mock rather than an assertion method that doesn't exist by Benjamin Peterson · 10 years ago
  74. c043061 Try to fix buildbot failures on old OpenSSLs (< 1.0.0) - followup to issue #21015 by Antoine Pitrou · 10 years ago
  75. 45278a8 #1704474: mark refleak test as specific to CPython by Andrew Kuchling · 10 years ago
  76. ebc1a30 Closes issue 21239. unittest.mock.patch.stopall() did not work deterministically when the same name was patched multiple times. by Michael Foord · 10 years ago
  77. d943fde Run test_urllib2_localnet tests using unittest.main(). by Senthil Kumaran · 10 years ago
  78. 484f8a8 Closes Issue 21222. by Kushal Das · 10 years ago
  79. 9574355 - Issue #21223: Pass test_site/test_startup_imports when some of the extensions by doko@ubuntu.com · 10 years ago
  80. 09cc169 asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly by Yury Selivanov · 10 years ago
  81. 809f90f Reverted 16efa8d27e4c after discussion with Eric. by Vinay Sajip · 10 years ago
  82. 1e53f8d Issue #21197: Add lib64 -> lib symlink in venvs on 64-bit non-OS X POSIX. by Vinay Sajip · 10 years ago
  83. a0d1073 Closed issue #8931: Make alternate formatting for 'c' raise an exception. Patch by Torsten Landschoff. by Eric V. Smith · 10 years ago
  84. f15f748 asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 by Yury Selivanov · 10 years ago
  85. cfdd016 Invoke test_urllibnet tests using unittest.main function by Senthil Kumaran · 10 years ago
  86. afb151a #17498: Defer SMTPServerDisconnected errors until the next command. by R David Murray · 10 years ago
  87. 6b3e87d merge heads by Senthil Kumaran · 10 years ago
  88. 7ce9074 Issue #13598: Add auto-numbering of replacement fields to string.Formatter. by Eric V. Smith · 10 years ago
  89. d8e24f1 Convert urllib.request parse_proxy doctests to unittests. by Senthil Kumaran · 10 years ago
  90. 01bafdc Issue 17826. Setting an iterable side_effect on a mock created by create_autospec now works by Michael Foord · 10 years ago
  91. 40470e0 do not generate pipe names in the temporary dir by Benjamin Peterson · 10 years ago
  92. 9da047b Issue #7776: Fix ``Host:'' header and reconnection when using http.client.HTTPConnection.set_tunnel(). by Senthil Kumaran · 10 years ago
  93. 2ea9712 Issue #12546: Allow \x00 as a fill character for builtin type __format__ methods. by Eric V. Smith · 10 years ago
  94. d2623d7 Issue 20968. unittest.mock.MagicMock now supports division by Michael Foord · 10 years ago
  95. 604453c #21169: add comment and doc update for getpass change. by R David Murray · 10 years ago
  96. f6e50b4 fix sending tuples to custom generator objects with yield from (closes #21209) by Benjamin Peterson · 10 years ago
  97. 584f5cb merge 3.3 by Benjamin Peterson · 10 years ago
  98. 156285c merge 3.2 by Benjamin Peterson · 10 years ago
  99. 99b5afa in scan_once, prevent the reading of arbitrary memory when passed a negative index by Benjamin Peterson · 10 years ago
  100. d5aa487 #21169: fix getpass to use replace error handler on UnicodeEncodeError. by R David Murray · 10 years ago