1. 8ac95ee Fix test_site from modifying sysconfig._CONFIG_VARS. by Brett Cannon · 12 years ago
  2. 5ceef13 merge by Brett Cannon · 12 years ago
  3. 927d874 If a module injects something into sys.modules as a side-effect of by Brett Cannon · 12 years ago
  4. 30d7947 Expose clock_settime() as time.clock_settime() by Victor Stinner · 12 years ago
  5. cbb290a merge 3.2 by Benjamin Peterson · 12 years ago
  6. 6215444 remove uneeded line by Benjamin Peterson · 12 years ago
  7. 9d28010 Testing the implicit initialization of the thread local context on first by Stefan Krah · 12 years ago
  8. dba1b40 merge 3.2 by Benjamin Peterson · 12 years ago
  9. e900096 prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 12 years ago
  10. 38548ad Whitespace. by Stefan Krah · 12 years ago
  11. 5100171 Clear the context flags if a context is initialized from the DefaultContext. by Stefan Krah · 12 years ago
  12. 93bba8f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  13. 709176f Issue #14151: Raise a ValueError, not a NameError, when trying to create by Antoine Pitrou · 12 years ago
  14. 0261d75 Removing the test of Element that causes ref-leak in GC (issue #14464). by Eli Bendersky · 12 years ago
  15. 50af011 Bump to 3.3.0a2. by Georg Brandl · 12 years ago
  16. 3f4a1b3 Update pydoc topics. by Georg Brandl · 12 years ago
  17. 8315f96 Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  18. 70deb3d Issue #13872: socket.detach() now marks the socket closed (as mirrored in the socket repr()). by Antoine Pitrou · 12 years ago
  19. 8b34b53 Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. by Antoine Pitrou · 12 years ago
  20. f70401e Issue #14406: Fix a race condition when using `concurrent.futures.wait(return_when=ALL_COMPLETED)`. by Antoine Pitrou · 12 years ago
  21. 8613b0d Merge #14434: make tutorial link in 'help' banner version-specific by R David Murray · 12 years ago
  22. de0f629 #14434: make tutorial link in 'help' banner version-specific by R David Murray · 12 years ago
  23. 69c2ffa issue #3035: update PendingDeprecationWarning to DeprectionWarning, point deprecation in tkinter doc by Andrew Svetlov · 12 years ago
  24. 78a0f20 Merge from 3.2 by Andrew Svetlov · 12 years ago
  25. f3c2976 update NEWS as Terry Reedy proposed by Andrew Svetlov · 12 years ago
  26. a5e8220 Fix the tests of GC collection in ET.Element according to Benjamin's recommendations by Eli Bendersky · 12 years ago
  27. c689785 Fix-up a comment by Raymond Hettinger · 12 years ago
  28. 7f7a5a7 Fix-up comments and add a sentinel variable for clarity. by Raymond Hettinger · 12 years ago
  29. 41eb79a No need to create and destroy links when updating a fixed-sized circular queue. by Raymond Hettinger · 12 years ago
  30. 1ff50df Minor cleanup: add whitespace, add comments, bring function attribute updates together. by Raymond Hettinger · 12 years ago
  31. 0192ba3 Issue #14065: Added cyclic GC support to ET.Element by Eli Bendersky · 12 years ago
  32. b4f6da8 Closes #14436: merged fix from 3.2. by Vinay Sajip · 12 years ago
  33. 6f5e54e Closes #14436: Convert msg + args to string before pickling. by Vinay Sajip · 12 years ago
  34. d3cebd7 Merge with 3.2 by Andrew Svetlov · 12 years ago
  35. 8640743 Issue #14442: Add missing errno import in test_smtplib. by Ross Lagerwall · 12 years ago
  36. 67ac079 Issue #14409: IDLE doesn't not execute commands from shell with default keybinding for <Return>. by Andrew Svetlov · 12 years ago
  37. aa8ec7e Fix unittest.mock.patch docstring by Michael Foord · 12 years ago
  38. 54b3db8 Minor unittest.mock.patch doc / docstring improvement by Michael Foord · 12 years ago
  39. dc5a4e1 merge with 3.2 by Georg Brandl · 12 years ago
  40. d864407 Closes #14411: remove outdated comment in rlcompleter docstring. by Georg Brandl · 12 years ago
  41. 1641bb7 Fix typo by Éric Araujo · 12 years ago
  42. a5cf6c4 Update missed idlelib/NEWS.txt by Andrew Svetlov · 12 years ago
  43. d543f2b IDLE can be launched as python -m ildelib by Andrew Svetlov · 12 years ago
  44. 753445a Issue #989712: update the code to process tkinter messages in IDLE by Andrew Svetlov · 12 years ago
  45. 0340ea7 unittest.mock: removed another bit of Python 2 only code by Michael Foord · 12 years ago
  46. 944e02d Adding unittest.mock documentation by Michael Foord · 12 years ago
  47. e58a562 unittest.mock: a mock created by patch with a spec as the list argument will be callable if __call__ is in the spec by Michael Foord · 12 years ago
  48. fb5d0a7 unittest.mock: remove another piece of Python 2 specific code by Michael Foord · 12 years ago
  49. 1ab27c6 Remove more Python 2 code from unittest.mock (obsolete function attributes) by Michael Foord · 12 years ago
  50. 0dccf65 Minor changes to the unittest.mock.mock_open helper by Michael Foord · 12 years ago
  51. 9925473 Addition of docstrings to unittest.mock helpers by Michael Foord · 12 years ago
  52. a74561a unittest.mock: set file_spec on first use by Michael Foord · 12 years ago
  53. 50a8c0e Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments by Michael Foord · 12 years ago
  54. a3eabb6 Merge by Michael Foord · 12 years ago
  55. 313f85f unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  56. fe17b2b Raise MemoryError instead of InvalidOperation/MallocError for compatibility by Stefan Krah · 12 years ago
  57. cd49d53 Issue #14200 — now displayhook for IDLE works in non-subprocess mode as well as subprecess. by Andrew Svetlov · 12 years ago
  58. 9384c7d Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 12 years ago
  59. 8e6fe64 Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 12 years ago
  60. 55bce63 Issue #14154: Reimplement the bigmem test memory watchdog as a subprocess. by Charles-François Natali · 12 years ago
  61. ee64b28 Closes #14314: backported fix. by Vinay Sajip · 12 years ago
  62. c7ea19f attempt to fix asyncore buildbot failure by Giampaolo Rodola' · 12 years ago
  63. a3481e7 attempt to fix asyncore buildbot failure by Giampaolo Rodola' · 12 years ago
  64. b6405ef Use the same exception hierarchy as decimal.py. FloatOperation now also by Stefan Krah · 12 years ago
  65. 4164ac1 merge by Giampaolo Rodola' · 12 years ago
  66. 466a54f fix failing asyncore test as per http://bugs.python.org/issue10340#msg156586 by Giampaolo Rodola' · 12 years ago
  67. 396e8fc Issue #13782: streamline argument type-checking in ET.Element by Eli Bendersky · 12 years ago
  68. 42243c4 #14380: Make actual default match docs, fix __init__ order. by R David Murray · 12 years ago
  69. 8680bcc #14380: Have MIMEText defaults to utf-8 when passed non-ASCII unicode by R David Murray · 12 years ago
  70. 3539ef3 merge 79422b3684f1 in 3.3 branch (issue 10340) by Giampaolo Rodola' · 12 years ago
  71. 350c94b fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect. by Giampaolo Rodola' · 12 years ago
  72. 98ba753 merge 3.2 (#14378) by Benjamin Peterson · 12 years ago
  73. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 12 years ago
  74. d5d17eb Issue #14204: The ssl module now has support for the Next Protocol Negotiation extension, if available in the underlying OpenSSL library. by Antoine Pitrou · 12 years ago
  75. a966c6f Issue #3035: Unused functions from tkinter are marked as pending peprecated. by Andrew Svetlov · 12 years ago
  76. 1da08e7 Merge #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 12 years ago
  77. e112153 #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 12 years ago
  78. 65e32d1 merge heads by Benjamin Peterson · 12 years ago
  79. 1919b7e Issue #7652: Integrate the decimal floating point libmpdec library to speed by Stefan Krah · 12 years ago
  80. 206d2a4 Merge from 3.2 for issue #3573, fix Misc/NEWS as Ned Deily guess. by Andrew Svetlov · 12 years ago
  81. 0f71f44 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 12 years ago
  82. 1b1a8e7 correctly lookup __trunc__ in int() constructor by Benjamin Peterson · 12 years ago
  83. 6b6e437 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 12 years ago
  84. 669b755 #14269: smtpd now conforms to the RFC and requires HELO before MAIL. by R David Murray · 12 years ago
  85. 83a9f48 Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords. by Larry Hastings · 12 years ago
  86. 7941736 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 12 years ago
  87. 2a88641 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 12 years ago
  88. 4ca5661 all OSErrors should indicate there are no extended attributes (closes #14358) by Benjamin Peterson · 12 years ago
  89. 3187749 Merge 3.2.3rc2 from release clone. by Georg Brandl · 12 years ago
  90. 226af70 Bump to 3.2.3rc2. by Georg Brandl · 12 years ago
  91. 7dabfed Fix whitespace by Raymond Hettinger · 12 years ago
  92. 7e0c581 Low overhead path for maxsize==0 by Raymond Hettinger · 12 years ago
  93. 0863d71 Merge #14333: fix test_queue so it can be run via standard unittest test discovery. by R David Murray · 12 years ago
  94. c6bfce9 #14333: fix test_queue so it can be run via standard unittest test discovery. by R David Murray · 12 years ago
  95. bd53809 #14344: fixed the repr of email.policy objects. by R David Murray · 12 years ago
  96. bc8e81d Section-off the source for better readability. by Raymond Hettinger · 12 years ago
  97. dce583e Minor beautification. by Raymond Hettinger · 12 years ago
  98. 96384b9 make extra arguments to object.__init__/__new__ to errors in most cases (finishes #1683368) by Benjamin Peterson · 12 years ago
  99. 80e22b5 Merge #11686: add missing entries to email __all__ lists. by R David Murray · 12 years ago
  100. 1b6c724 #11686: add missing entries to email __all__ lists. by R David Murray · 12 years ago