1. 3d4b2d4 Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular by Serhiy Storchaka · 10 years ago
  2. e4aad5a #18034: update FAQ to suggest importlib.import_module instead of __import__. Patch by Wouter van Heyst. by Ezio Melotti · 10 years ago
  3. 69fb6a4 Issue #22104: Don't hold a reference to the loaded TestSuite in runtest_inner by Zachary Ware · 10 years ago
  4. d577480 #20977: fix undefined name in the email module. Patch by Rose Ames. by Ezio Melotti · 10 years ago
  5. 74596a8 Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. by Serhiy Storchaka · 10 years ago
  6. 3d4953a Edit NEWS entry by Ned Deily · 10 years ago
  7. 8a0fb2c #21704: remove duplicate name in Misc/ACKS. by Ezio Melotti · 10 years ago
  8. 7eca734 Issue #17172: add NEWS by Terry Jan Reedy · 10 years ago
  9. e0e6581 Issue #21704: Fix build error for _multiprocessing when semaphores by Richard Oudkerk · 10 years ago
  10. e254e53 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError by Victor Stinner · 10 years ago
  11. 5a2146a Issue #22044: Fixed premature DECREF in call_tzinfo_method. by Raymond Hettinger · 10 years ago
  12. 64ba60a Issue #21958: Define HAVE_ROUND when building with VS 2013 and above. by Zachary Ware · 10 years ago
  13. 45cff66 Issue #16133: The asynchat.async_chat.handle_read() method now ignores by Victor Stinner · 10 years ago
  14. a3c80ce Issue #19884: readline: Disable the meta modifier key if stdout is not a by Victor Stinner · 10 years ago
  15. b03f042 Issue #21597: Turtledemo text pane can now be widened to view or copy complete by Terry Jan Reedy · 10 years ago
  16. f012ba4 Issue #22002: Make full use of test discovery in test sub-packages. by Zachary Ware · 10 years ago
  17. 8966759 Issue #21888: plistlib's load() and loads() now work if the fmt parameter is by Serhiy Storchaka · 10 years ago
  18. 64a1207 Correct issue #21044 patch author. by Serhiy Storchaka · 10 years ago
  19. 17f5f81 Issue #15759: "make suspicious", "make linkcheck" and "make doctest" in Doc/ by Serhiy Storchaka · 10 years ago
  20. dfab935 Issue #21976: Fix test_ssl to accept LibreSSL version strings. by Antoine Pitrou · 10 years ago
  21. 854e76e Issue #21868: Prevent turtle crash due to invalid undo buffer size. by Raymond Hettinger · 10 years ago
  22. 01963e6 add # by Benjamin Peterson · 10 years ago
  23. 2c6a3ae Issue 21044: tarfile.open() now handles fileobj with an integer 'name' by Serhiy Storchaka · 10 years ago
  24. 2b0a610 Issue #21918: Convert test_tools.py to a sub-package of test. by Zachary Ware · 10 years ago
  25. 9b7f9e6 Issue #21765: Add support for non-ascii identifiers to HyperParser by Tal Einat · 10 years ago
  26. 5d0d2e6 Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  27. 217f4cd Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  28. 915a30f Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  29. ad5ffd4 Issue #19076: Don't pass the redundant 'file' argument to self.error(). by Berker Peksag · 10 years ago
  30. 7aee3ec Issue #21906: Make Tools/scripts/md5sum.py work in Python 3. by Berker Peksag · 10 years ago
  31. be25426 Idle News entries. by Terry Jan Reedy · 10 years ago
  32. eb43214 Issue #21942: Fixed source file viewing in pydoc's server mode on Windows. by Zachary Ware · 10 years ago
  33. 630a4f6 Issue #11259: asynchat.async_chat().set_terminator() now raises a ValueError if by Victor Stinner · 10 years ago
  34. d9e810a Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn't by Victor Stinner · 10 years ago
  35. 0a0d1da Issue #21707: Add missing kwonlyargcount argument to ModuleFinder.replace_paths_in_code(). by Berker Peksag · 10 years ago
  36. e50dafc Issue #20639: calling Path.with_suffix('') allows removing the suffix again. by Antoine Pitrou · 10 years ago
  37. 7084e73 Issue #21714: Disallow the construction of invalid paths using Path.with_name(). Original patch by Antony Lee. by Antoine Pitrou · 10 years ago
  38. 7bc5fb6 Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compiler by Ned Deily · 10 years ago
  39. acc8cf2 Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called. by Antoine Pitrou · 10 years ago
  40. ad4690f Issue #21151: Fixed a segfault in the winreg module. by Zachary Ware · 10 years ago
  41. e10920f Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, by Victor Stinner · 10 years ago
  42. 2e57b4e Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters. by Victor Stinner · 10 years ago
  43. 093e66e Issue #21811: Add Misc/NEWS entry. by Ned Deily · 10 years ago
  44. 4d4c69d Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapper by Victor Stinner · 10 years ago
  45. 297d104 Issue #21858: Better handling of Python exceptions in the sqlite3 module. by Victor Stinner · 10 years ago
  46. c6772c4 #21476: Unwrap fp in BytesParser so the file isn't unexpectedly closed. by R David Murray · 10 years ago
  47. 1945456 Issue #19145: Remove duplicate ACKS entry by Raymond Hettinger · 10 years ago
  48. 65c623d Issue #21729: Used the "with" statement in the dbm.dumb module to ensure by Serhiy Storchaka · 10 years ago
  49. 97d3555 Issue #19145: Fix handling of negative values for a "times" keyword argument to itertools.repeat()> by Raymond Hettinger · 10 years ago
  50. 6f6922c Add news entry for #21832 by Raymond Hettinger · 10 years ago
  51. 14199f9 #20155: use fake HTTP method names so windows doesn't hang the tests. by R David Murray · 10 years ago
  52. 4c945fe merge by Raymond Hettinger · 10 years ago
  53. 17f9b64 add Chris Foster by Benjamin Peterson · 10 years ago
  54. 04ba0bb Issue #11974: Add tutorial section on class and instance variables by Raymond Hettinger · 10 years ago
  55. c0f964f inspect: Validate that __signature__ is None or an instance of Signature. by Yury Selivanov · 10 years ago
  56. cd95e18 Issue #10747: Use versioned labels in the Windows start menu. by Martin v. Löwis · 10 years ago
  57. 6dec4ea Issue #21812: Trigger immediate transformation in turtle.shapetransform(). by Raymond Hettinger · 10 years ago
  58. fabefc3 Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks(). by Raymond Hettinger · 10 years ago
  59. 504f5c3 Issue #21491: socketserver: Fix a race condition in child processes reaping. by Charles-François Natali · 10 years ago
  60. 2e4d3b1 Issue #21722: The distutils "upload" command now exits with a non-zero return code when uploading fails. by Antoine Pitrou · 10 years ago
  61. 66dc6b0 Issue #21723: asyncio.Queue: support any type of number (ex: float) for the by Victor Stinner · 10 years ago
  62. 67fbed5 add Ammar Brohi for running ssllab's test on python.org and reporting a problem by Benjamin Peterson · 10 years ago
  63. 6637565 Add Idle news entries. by Terry Jan Reedy · 10 years ago
  64. 5b1fdc1 Issue #21669: Special case print & exec syntax errors by Nick Coghlan · 10 years ago
  65. 92a4055 Issue #21774: Fix incorrect variable in xml.dom.minidom by Raymond Hettinger · 10 years ago
  66. a8c75fe merge 3.3 (#21766) by Benjamin Peterson · 10 years ago
  67. 6cd1954 merge 3.2 (#21766) by Benjamin Peterson · 10 years ago
  68. 73b8b1c url unquote the path before checking if it refers to a CGI script (closes #21766) by Benjamin Peterson · 10 years ago
  69. 9422df0 Issue #19493: Refactor ctypes test package. by Zachary Ware · 10 years ago
  70. f150378 Issue #21629: Fix Argument Clinic's "--converters" feature. by Larry Hastings · 10 years ago
  71. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  72. f10063e Issue #21310: Fixed possible resource leak in failed open(). by Serhiy Storchaka · 10 years ago
  73. 8a8f7f9 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  74. 159824e make sure the builtin help function doesn't fail when sys.stdin is not a valid file (closes #11709) by Benjamin Peterson · 10 years ago
  75. 96e0430 document TokenError and unclosed expression behavior (closes #12063) by Benjamin Peterson · 10 years ago
  76. ed1160b don't remove self from example code in the HTML output (closes #13223) by Benjamin Peterson · 10 years ago
  77. 3c2dca6 in ftp cache pruning, avoid changing the size of a dict while iterating over it (closes #21463) by Benjamin Peterson · 10 years ago
  78. 9b2731b document the compress_level argument to tarfile.open (closes #21404) by Benjamin Peterson · 10 years ago
  79. c416162 allow the keyword else immediately after (no space) an integer (closes #21642) by Benjamin Peterson · 10 years ago
  80. 7d55da4 Issue #21671, CVE-2014-0224: Update the Windows build to openssl-1.0.1h by Zachary Ware · 10 years ago
  81. 537e2c8 Issue #18910: Add unittest for textView. Patch by Phil Webster. by Terry Jan Reedy · 10 years ago
  82. 7936e6f Issue #18292: Idle - test AutoExpand. Patch by Saihadhav Heblikar. by Terry Jan Reedy · 10 years ago
  83. e3fcfc2 Issue #18409: Idle: add unittest for AutoComplete. Patch by Phil Webster. by Terry Jan Reedy · 10 years ago
  84. b52f876 Issue 21533: Dicts take iterables, not iterators. Patch by Wolfgang Maier. by Terry Jan Reedy · 10 years ago
  85. 66f2928 Issue #18492: Allow all resources when tests are not run by regrtest.py. by Zachary Ware · 10 years ago
  86. d4d39c7 Issue #21634: Fix pystone micro-benchmark: use floor division instead of true by Victor Stinner · 10 years ago
  87. b166191 Issue #17095: Fix Modules/Setup *shared* support. by Ned Deily · 10 years ago
  88. d4dcb70 Don't restrict ourselves to a "max" fd when closing fds before exec() by Gregory P. Smith · 10 years ago
  89. 694c315 Issue #21605: Added tests for Tkinter images. by Serhiy Storchaka · 10 years ago
  90. 79851d7 Issue #21552: Fixed possible integer overflow of too long string lengths in by Serhiy Storchaka · 10 years ago
  91. 0af8a86 Fix issue #14315: The zipfile module now ignores extra fields in the central by Gregory P. Smith · 10 years ago
  92. b49eff2 Issue #21402: tkinter.ttk now works when default root window is not set. by Serhiy Storchaka · 10 years ago
  93. ffc1e6d Issue #21493: Added test for ntpath.expanduser(). Original patch by by Serhiy Storchaka · 10 years ago
  94. 47a9813 Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr by Serhiy Storchaka · 10 years ago
  95. 432810f Issue #18807: If copying (no symlinks) specified for a venv, then the python interpreter aliases (python, python3) are now created by copying rather than symlinking. by Vinay Sajip · 10 years ago
  96. dea46ec Issue #21481: Teach argparse equality tests to return NotImplemented when comparing to unknown types. by Raymond Hettinger · 10 years ago
  97. dd5e53a Issue 8743: Improve interoperability between sets and the collections.Set abstract base class. by Raymond Hettinger · 10 years ago
  98. 978c6ab Issue 13355: Make random.triangular degrade gracefully when low == high. by Raymond Hettinger · 10 years ago
  99. 7df417d Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. by Serhiy Storchaka · 10 years ago
  100. 8447c70 Issue #14710: Fix both pkgutil.find_loader() and get_loader() to not by Brett Cannon · 10 years ago