1. 0340ea7 unittest.mock: removed another bit of Python 2 only code by Michael Foord · 12 years ago
  2. 944e02d Adding unittest.mock documentation by Michael Foord · 12 years ago
  3. 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
  4. fb5d0a7 unittest.mock: remove another piece of Python 2 specific code by Michael Foord · 12 years ago
  5. 1ab27c6 Remove more Python 2 code from unittest.mock (obsolete function attributes) by Michael Foord · 12 years ago
  6. 0dccf65 Minor changes to the unittest.mock.mock_open helper by Michael Foord · 12 years ago
  7. 9925473 Addition of docstrings to unittest.mock helpers by Michael Foord · 12 years ago
  8. a74561a unittest.mock: set file_spec on first use by Michael Foord · 12 years ago
  9. 50a8c0e Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments by Michael Foord · 12 years ago
  10. a3eabb6 Merge by Michael Foord · 12 years ago
  11. 313f85f unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  12. fe17b2b Raise MemoryError instead of InvalidOperation/MallocError for compatibility by Stefan Krah · 12 years ago
  13. cd49d53 Issue #14200 — now displayhook for IDLE works in non-subprocess mode as well as subprecess. by Andrew Svetlov · 12 years ago
  14. 9384c7d Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 12 years ago
  15. 8e6fe64 Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due by Charles-François Natali · 12 years ago
  16. 55bce63 Issue #14154: Reimplement the bigmem test memory watchdog as a subprocess. by Charles-François Natali · 12 years ago
  17. ee64b28 Closes #14314: backported fix. by Vinay Sajip · 13 years ago
  18. c7ea19f attempt to fix asyncore buildbot failure by Giampaolo Rodola' · 13 years ago
  19. a3481e7 attempt to fix asyncore buildbot failure by Giampaolo Rodola' · 13 years ago
  20. b6405ef Use the same exception hierarchy as decimal.py. FloatOperation now also by Stefan Krah · 13 years ago
  21. 4164ac1 merge by Giampaolo Rodola' · 13 years ago
  22. 466a54f fix failing asyncore test as per http://bugs.python.org/issue10340#msg156586 by Giampaolo Rodola' · 13 years ago
  23. 396e8fc Issue #13782: streamline argument type-checking in ET.Element by Eli Bendersky · 13 years ago
  24. 42243c4 #14380: Make actual default match docs, fix __init__ order. by R David Murray · 13 years ago
  25. 8680bcc #14380: Have MIMEText defaults to utf-8 when passed non-ASCII unicode by R David Murray · 13 years ago
  26. 3539ef3 merge 79422b3684f1 in 3.3 branch (issue 10340) by Giampaolo Rodola' · 13 years ago
  27. 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' · 13 years ago
  28. 98ba753 merge 3.2 (#14378) by Benjamin Peterson · 13 years ago
  29. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 13 years ago
  30. 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 · 13 years ago
  31. a966c6f Issue #3035: Unused functions from tkinter are marked as pending peprecated. by Andrew Svetlov · 13 years ago
  32. 1da08e7 Merge #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 13 years ago
  33. e112153 #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v by R David Murray · 13 years ago
  34. 65e32d1 merge heads by Benjamin Peterson · 13 years ago
  35. 1919b7e Issue #7652: Integrate the decimal floating point libmpdec library to speed by Stefan Krah · 13 years ago
  36. 206d2a4 Merge from 3.2 for issue #3573, fix Misc/NEWS as Ned Deily guess. by Andrew Svetlov · 13 years ago
  37. 0f71f44 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 13 years ago
  38. 1b1a8e7 correctly lookup __trunc__ in int() constructor by Benjamin Peterson · 13 years ago
  39. 6b6e437 #3573: idle now doesn't hungs if launched as: idle -e <directory> by Andrew Svetlov · 13 years ago
  40. 669b755 #14269: smtpd now conforms to the RFC and requires HELO before MAIL. by R David Murray · 13 years ago
  41. 83a9f48 Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords. by Larry Hastings · 13 years ago
  42. 7941736 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 13 years ago
  43. 2a88641 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 13 years ago
  44. 4ca5661 all OSErrors should indicate there are no extended attributes (closes #14358) by Benjamin Peterson · 13 years ago
  45. 3187749 Merge 3.2.3rc2 from release clone. by Georg Brandl · 13 years ago
  46. 226af70 Bump to 3.2.3rc2. by Georg Brandl · 13 years ago
  47. 7dabfed Fix whitespace by Raymond Hettinger · 13 years ago
  48. 7e0c581 Low overhead path for maxsize==0 by Raymond Hettinger · 13 years ago
  49. 0863d71 Merge #14333: fix test_queue so it can be run via standard unittest test discovery. by R David Murray · 13 years ago
  50. c6bfce9 #14333: fix test_queue so it can be run via standard unittest test discovery. by R David Murray · 13 years ago
  51. bd53809 #14344: fixed the repr of email.policy objects. by R David Murray · 13 years ago
  52. bc8e81d Section-off the source for better readability. by Raymond Hettinger · 13 years ago
  53. dce583e Minor beautification. by Raymond Hettinger · 13 years ago
  54. 96384b9 make extra arguments to object.__init__/__new__ to errors in most cases (finishes #1683368) by Benjamin Peterson · 13 years ago
  55. 80e22b5 Merge #11686: add missing entries to email __all__ lists. by R David Murray · 13 years ago
  56. 1b6c724 #11686: add missing entries to email __all__ lists. by R David Murray · 13 years ago
  57. 7104c72 #12788: fix error in test_policy when run under refleak detection by R David Murray · 13 years ago
  58. 4f5139b Root variable is not changed. by Raymond Hettinger · 13 years ago
  59. 202d1ad Fix whitespace by Raymond Hettinger · 13 years ago
  60. d37fb55 Unique sentinel value for cache.get() by Raymond Hettinger · 13 years ago
  61. 6e8c817 Refactor calculation of the cache key. Minor code cleanups. by Raymond Hettinger · 13 years ago
  62. 020bf28 Merge by Antoine Pitrou · 13 years ago
  63. 846fd30 Issue #14335: multiprocessing's custom Pickler subclass now inherits from the C-accelerated implementation. by Antoine Pitrou · 13 years ago
  64. 29a837d merge heads by Benjamin Peterson · 13 years ago
  65. 954cf57 clear the root with the cache by Benjamin Peterson · 13 years ago
  66. d656958 Minor code cleanup. by Raymond Hettinger · 13 years ago
  67. 57b2959 Eliminate duplicate link lookup. Minor cleanup. by Raymond Hettinger · 13 years ago
  68. de39454 merge 3.2 (#14334) by Benjamin Peterson · 13 years ago
  69. 16d84ac check to make sure the attribute is a string (#14334) by Benjamin Peterson · 13 years ago
  70. 6e33525 fix trailing whitespace by Eli Bendersky · 13 years ago
  71. 2b71140 Add a test that makes sure TreeBuilder can be passed element_factory in the by Eli Bendersky · 13 years ago
  72. e60d2d9 merge by Raymond Hettinger · 13 years ago
  73. ec0e910 Improve the memory utilization (and speed) of functools.lru_cache(). by Raymond Hettinger · 13 years ago
  74. 209d70e closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem by Senthil Kumaran · 13 years ago
  75. be3f851 closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem by Senthil Kumaran · 13 years ago
  76. 5b77d81 Issue #14207: the ParseError exception raised by _elementtree was made by Eli Bendersky · 13 years ago
  77. f996e77 Closes Issue #14246: _elementtree parser will now handle io.StringIO by Eli Bendersky · 13 years ago
  78. e53d977 Explain the use of charset parameter with Content-Type header: issue11082 by Senthil Kumaran · 13 years ago
  79. 6b3434a Explain the use of charset parameter with Content-Type header. Issue11082 by Senthil Kumaran · 13 years ago
  80. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 13 years ago
  81. 3270d11 port from 3.2 - Fix the urllib closing issue which hangs on particular ftp urls/ftp servers. closes issue11199 by Senthil Kumaran · 13 years ago
  82. 73277fe closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. by Senthil Kumaran · 13 years ago
  83. a4e0188 (sched) when run() is invoked with blocking=False return the deadline of the next scheduled call in the scheduler; this use case was suggested in http://bugs.python.org/issue1641#msg149453 by Giampaolo Rodola' · 13 years ago
  84. 17160fd Fixes #14314: Improved SMTP timeout handling. by Vinay Sajip · 13 years ago
  85. 3d7c878 Issue #14222: Use the new time.steady() function instead of time.time() for by Victor Stinner · 13 years ago
  86. 071eca3 Issue #10278: Add an optional strict argument to time.steady(), False by default by Victor Stinner · 13 years ago
  87. ec919cc Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time.steady() by Victor Stinner · 13 years ago
  88. 1a5e5de remove get_prefix and set_prefix (#13248) by Benjamin Peterson · 13 years ago
  89. d7c65e2 Removed XXX from unittest.mock docstring and switch to a nicer try...except...finally by Michael Foord · 13 years ago
  90. a74b3aa Remove more Python 2 compatibility cruft from unittest.mock by Michael Foord · 13 years ago
  91. e7c8fde merge heads by Senthil Kumaran · 13 years ago
  92. 2f9bf35 Fix the buildbot breakdown - issue 10050 by Senthil Kumaran · 13 years ago
  93. 8247b18 Megre from tip by Andrew Svetlov · 13 years ago
  94. b53da6e Merge from tip by Andrew Svetlov · 13 years ago
  95. 38b968b9 deprecated the old urllib primitives in 3.3 urllib package - issue 10050 by Senthil Kumaran · 13 years ago
  96. c17adf4 Remove Python 2 compatibility cruft from unittest.mock by Michael Foord · 13 years ago
  97. 05bab93 Issue #14200: Idle shell crash on printing non-BMP unicode character. by Andrew Svetlov · 13 years ago
  98. ebff097 And another one... mock import fix. by Michael Foord · 13 years ago
  99. 83a1685 Fix another mock import by Michael Foord · 13 years ago
  100. 0ca9acd Fix import failure in mock test by Michael Foord · 13 years ago