1. 3034efd Issue #17710: Fix pickle raising a SystemError on bogus input. by Antoine Pitrou · 11 years ago
  2. ed3cd7e #13510: clarify that f.readlines() is note necessary to iterate over a file. Patch by Dan Riti. by Ezio Melotti · 11 years ago
  3. 45fe62d Issue #17728: Specify default precision for float.format for presentation types e, f, and g. by Eric V. Smith · 11 years ago
  4. f1465f0 Close #17731: Clean up properly in test_import by Nick Coghlan · 11 years ago
  5. 26dfaac9 #17341: Include name in re error message about invalid group name. by R David Murray · 11 years ago
  6. f2fa5fc Issue #17221: Resort Misc/NEWS. by Serhiy Storchaka · 11 years ago
  7. 839e5ea Issue #17702: use assertRaises() for the unit test by Victor Stinner · 11 years ago
  8. 6d10139 Close #17702: os.environ now raises KeyError with the original environment by Victor Stinner · 11 years ago
  9. c4e0d98 Close issue #16163: handle submodules in pkgutil.iter_importers by Nick Coghlan · 11 years ago
  10. 8157459 Merge heads. by Alexandre Vassalotti · 11 years ago
  11. 8db89ca Issue #16550: Update the opcode descriptions of pickletools to use unsigned by Alexandre Vassalotti · 11 years ago
  12. 1aca953 Fix example ignoring ".svn" directories in compileall. by Georg Brandl · 11 years ago
  13. 1e1134a The Integral class does not contain implementations for the bit-shifting operations. (See #3056.) by Georg Brandl · 11 years ago
  14. 5e2954e Clarify that the function *definition* creates the function and the binding in the module globals. by Georg Brandl · 11 years ago
  15. 1d472b7 Closes #14462: allow any valid Python identifier in sre group names, as documented. by Georg Brandl · 11 years ago
  16. 991fc57 Closes #13638: document PyErr_SetFromErrnoWithFilenameObject, by Georg Brandl · 11 years ago
  17. 5c4874f Merge heads. by Alexandre Vassalotti · 11 years ago
  18. a204636 bind('') does not do the same as bind('localhost') by Georg Brandl · 11 years ago
  19. 5f4b4ac Update code examples using collections.abc classes. by Georg Brandl · 11 years ago
  20. 7b8c132 Closes #17726: small clarification in design FAQ. by Georg Brandl · 11 years ago
  21. 00d83f2 Clean up error messages raised by save_reduce in _pickle. by Alexandre Vassalotti · 11 years ago
  22. e095968 Update using/mac documentation which was still on 2.5. by Georg Brandl · 11 years ago
  23. dec3b3f Clarify point in name mangling doc. by Georg Brandl · 11 years ago
  24. 6eea818 Fix pickling test in test_memoryio. by Alexandre Vassalotti · 11 years ago
  25. 9a7a811 Issue #16804: Fix 'python -S -m site' failure. by Meador Inge · 11 years ago
  26. 0bfd6ac Reflow paragraph. by R David Murray · 11 years ago
  27. 14ee3cf #2118: clarify smtplib exception documentation. by R David Murray · 11 years ago
  28. 4bb1734 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 11 years ago
  29. f756f94 #17571: remove broken links in datetime.py docstring. by Ezio Melotti · 11 years ago
  30. ac3da87 #17686: fix broken link in Doc/using/unix.rst. Patch by Dan Riti. by Ezio Melotti · 11 years ago
  31. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 11 years ago
  32. b4fd468 Revert changes for #13355 by request from Raymond Hettinger by Andrew Svetlov · 11 years ago
  33. 64aafeb Issue #16447: Fix potential segfault when setting __name__ on a class. by Mark Dickinson · 11 years ago
  34. eff6444 Fix whitespaces by Andrew Svetlov · 11 years ago
  35. a2dfc35 Issue #13355: Raise ValueError on random.triangular call with invalid params. by Andrew Svetlov · 11 years ago
  36. 7b2c8bb Issue #16658: add missing return to HTTPConnection.send(). by Andrew Svetlov · 11 years ago
  37. a3b255f #17653: fix typo in socketserver docs. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 11 years ago
  38. 6ebdb61 Merge heads. by Ezio Melotti · 11 years ago
  39. 59d6d2d #17688: fix declaration for richcmp example in the docs. by Andrew Svetlov · 11 years ago
  40. 075d87c #6696: add documentation for the Profile objects, and improve profile/cProfile docs. Patch by Tom Pinckney. by Ezio Melotti · 11 years ago
  41. c2ecac4 #17692: test_sqlite now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  42. 1eafd10 #17585: Fixed IDLE regression. Now closes when using exit() or quit(). by Roger Serwy · 11 years ago
  43. 36b045f Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 11 years ago
  44. 3836d70 #17690: test_time now works with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  45. 5e2f593 #14971: Use class method name, not function.__name__, during unittest discovery. by R David Murray · 11 years ago
  46. f49581c normalize whitespace by Senthil Kumaran · 11 years ago
  47. 277e909 #5609 - test_urllib coverage for url2pathname and pathname2url. Patch by Senthil Kumaran · 11 years ago
  48. c9314d9 don't run frame if it has no stack (closes #17669) by Benjamin Peterson · 11 years ago
  49. cd514cf #12820: add tests for the xml.dom.minicompat module. Patch by John Chandler and Phil Connell. by Ezio Melotti · 11 years ago
  50. c09959a #17635: fix wrong function name in multiprocessing docs. by Ezio Melotti · 11 years ago
  51. d9fbf36 #17678: Fix DeprecationWarning in the http/cookiejar.py by changing the usage by Senthil Kumaran · 11 years ago
  52. d281c73 #17648 - convert test_urllib2.py doctests to unittests by Senthil Kumaran · 11 years ago
  53. 0803a39 #17657: Show full Tk version in IDLE's about dialog. Patch by Todd Rovito. by Roger Serwy · 11 years ago
  54. 7e69f00 Close #17666: Fix reading gzip files with an extra field. by Serhiy Storchaka · 11 years ago
  55. b0f9fa7 Add NEWS entry for #17502: Process DEFAULT values in mock side_effect that returns iterator. by Andrew Svetlov · 11 years ago
  56. 7733be8 #17613: Prevent traceback when removing syntax colorizer in IDLE. by Roger Serwy · 11 years ago
  57. 6b2918a #1207589: Backwards-compatibility patch for right-click menu in IDLE. by Roger Serwy · 11 years ago
  58. 8b2cd75 Process DEFAULT values in mock side_effect that returns iterator. by Andrew Svetlov · 11 years ago
  59. 595365d Merge heads by Andrew Svetlov · 11 years ago
  60. 5b6e1ca Update argparse docs to follow order of ArgumentParser() arguments. by Andrew Svetlov · 11 years ago
  61. 17328e4 Clean-up lru_cache examples. The print() not is needed. Set maxsize to a power of two. by Raymond Hettinger · 11 years ago
  62. 0ef392c #16887: IDLE now accepts Cancel in tabify/untabify dialog box. by Roger Serwy · 11 years ago
  63. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  64. 9e64c91 Merge by Antoine Pitrou · 11 years ago
  65. 55bff89 Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  66. c496eda move IDLE news to its own section by Benjamin Peterson · 11 years ago
  67. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  68. e16f4dc Change wording as Eli Bendersky suggests. by Andrew Svetlov · 11 years ago
  69. 03b273f Add 3.3.1 to LICENSE files. by Georg Brandl · 11 years ago
  70. bf56102 Post-release update for 3.3.1 by Georg Brandl · 11 years ago
  71. cca5548 merge with 3.3.1 release clone by Georg Brandl · 11 years ago
  72. 2fd4abe merge with 3.2 branch by Georg Brandl · 11 years ago
  73. 485acde Added tag v3.3.1 for changeset d9893d13c628 by Georg Brandl · 11 years ago
  74. 9aa23c5 Bump to 3.3.1. by Georg Brandl · 11 years ago
  75. 11692ac Added tag v3.2.4 for changeset 1e10bdeabe3d by Georg Brandl · 11 years ago
  76. 8bc7e31 Bump to 3.2.4. by Georg Brandl · 11 years ago
  77. 9a411ce Add link to glossary for hashable term in docs for set type by Andrew Svetlov · 11 years ago
  78. e463b66 Fix typo by Andrew Svetlov · 11 years ago
  79. 815b0e2 Fix typo. by Andrew Svetlov · 11 years ago
  80. 4a2ab12 Issue #17483: 3.3 Branch - Remove unreachable code in urllib.request by Senthil Kumaran · 11 years ago
  81. 09f0dde #8913: add examples and docs for date/time/datetime.__format__. Patch by Heikki Partanen. by Ezio Melotti · 11 years ago
  82. 38546ee close search and replace dialog after it is used (closes #17625) by Benjamin Peterson · 11 years ago
  83. 7684fa8 close search and replace dialog after it is used (closes #17625) by Benjamin Peterson · 11 years ago
  84. cf658c2 close search and replace dialog after it is used (closes #17625) by Benjamin Peterson · 11 years ago
  85. 0f38908 #17572: Avoid chained exceptions while passing bad directives to time.strptime(). Initial patch by Claudiu Popa. by Ezio Melotti · 11 years ago
  86. a99e171 Issue #15940: NEWS entry by Terry Jan Reedy · 11 years ago
  87. 41459a9 Issue #15940: Replace tab. by Terry Jan Reedy · 11 years ago
  88. b5e2e7e Issue #15940: Specify effect of locale on time functions. by Terry Jan Reedy · 11 years ago
  89. 614c578 Issue #17619: Make input() check for Ctrl-C correctly on Windows. by Richard Oudkerk · 11 years ago
  90. d8a4696 Use repr when printing unknown url type in urlopen. by R David Murray · 11 years ago
  91. 03b2a1c #17623: fix whatsnew typo by R David Murray · 11 years ago
  92. 6b7a5ae #14254: IDLE now handles readline correctly across shell restarts. by Roger Serwy · 11 years ago
  93. 0d28a61 #17614: IDLE no longer raises exception when quickly closing a file. by Roger Serwy · 11 years ago
  94. d7c9d9c #17614: IDLE no longer raises exception when quickly closing a file. by Roger Serwy · 11 years ago
  95. ed3a303 Close #6822: ftplib.FTP.storlines() expects a binary file, not a text file by Victor Stinner · 11 years ago
  96. c993a19 #13163: fix names of _get_socket args by R David Murray · 11 years ago
  97. ef0faa5 merge by Georg Brandl · 11 years ago
  98. 6395241 list slotdefs in offset order rather than sorting them (closes #17610) by Benjamin Peterson · 11 years ago
  99. f8ffec0 Issue #17357: Add missing verbosity messages when running under by Brett Cannon · 11 years ago
  100. 34d0c66 #6698: IDLE now opens just an editor window when configured to do so. by Roger Serwy · 11 years ago