1. 20b017e Windows buildbot: use --timeout feature in Tools/buildbot/test.bat by Victor Stinner · 12 years ago
  2. 4205065 Issue #20390: Removing detritus from Argument Clinic "file preset" name change. by Larry Hastings · 12 years ago
  3. b60e9ca Issue #20455: asyncio: write a new write pipe transport class for proactor (on by Victor Stinner · 12 years ago
  4. 61b3c9b asyncio: Fix _UnixWritePipeTransport, raise BrokenPipeError when the pipe is by Victor Stinner · 12 years ago
  5. fcfb946 Issue #20311, #20452: poll and epoll now round the timeout away from zero, by Victor Stinner · 12 years ago
  6. 49d0f4e Issue #20452: Remove debug code, no more needed by Victor Stinner · 12 years ago
  7. 323748e asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written by Victor Stinner · 12 years ago
  8. dcd9740 Issue #20452: select and selectors round (again) timeout away from zero for by Victor Stinner · 12 years ago
  9. 31f6504 Issue #20452: Oops, fix debug code :-/ by Victor Stinner · 12 years ago
  10. 0278032 Issue #20452: add more info in case of test_asyncio failure to try to debug the by Victor Stinner · 12 years ago
  11. a849be9 asyncio: Fix misc whitespace issues. by Guido van Rossum · 12 years ago
  12. 1c16537 asyncio: Fix granularity of test_utils.TestLoop. by Victor Stinner · 12 years ago
  13. 9572898 asyncio: Future.set_exception(exc) should instantiate exc if it is a class. by Victor Stinner · 12 years ago
  14. 91445fb overlapped.c: Fix usage of the union by Victor Stinner · 12 years ago
  15. 63a615c Remove issue 19081 Misc/NEWS entry since it isn't entirely fixed yet. by Gregory P. Smith · 12 years ago
  16. 844dcfb Remove issue 19081 Misc/NEWS entry since it isn't entirely fixed yet. by Gregory P. Smith · 12 years ago
  17. d71e52f inspect.doc: Soften the note about inspect.signature not supporting by Yury Selivanov · 12 years ago
  18. 224c9c1 inspect.docs: Document constructors for Signature & Parameter #20442 by Yury Selivanov · 12 years ago
  19. 7835689 inspect.docs: Document constructors for Signature & Parameter #20442 by Yury Selivanov · 12 years ago
  20. 1ad5afc asyncio: document iscoroutine(), iscoroutinefunction() and wait_for() by Victor Stinner · 12 years ago
  21. 0e5b241 Issue #20373: generalize use of test.script_helper in test_warnings. Patch by Arfrever. by Antoine Pitrou · 12 years ago
  22. bb08b36 Issue #20373: generalize use of test.script_helper in test_warnings. Patch by Arfrever. by Antoine Pitrou · 12 years ago
  23. 9e3a60b More asyncio news. by Guido van Rossum · 12 years ago
  24. e623a12 asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instead of assert. by Victor Stinner · 12 years ago
  25. 73f10fd asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor. by Victor Stinner · 12 years ago
  26. 48c66c3 asyncio: wait_for() now accepts None as timeout (Victor Stinner). by Guido van Rossum · 12 years ago
  27. 1e9a446 asyncio: Pass through pause/resume from subprocess pipe proto to subprocess proto. Also kill dummy eof_received(). by Guido van Rossum · 12 years ago
  28. 4d62d0b asyncio: Refactor drain logic in streams.py to be reusable. by Guido van Rossum · 12 years ago
  29. aaabc4f asyncio: Get rid of _try_connected(). by Victor Stinner · 12 years ago
  30. 47fb97e asyncio: Add write flow control to unix pipes. by Guido van Rossum · 12 years ago
  31. 3ccead1 asyncio: Refactoring: move write flow control to a subclass/mixin. by Guido van Rossum · 12 years ago
  32. 63b4d4b asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport shouldn't log BrokenPipeError nor ConnectionResetError. by Victor Stinner · 12 years ago
  33. 89ca85c inspect.Signature.from_function: Use CO_VARARGS & CO_VARKEYWORDS constants by Yury Selivanov · 12 years ago
  34. 0486f81 inspect.signature: Make sure that if a callable object has '_patialmethod' by Yury Selivanov · 12 years ago
  35. c45873e inspect.Signature.bind: Update method signature to rule out possiblity by Yury Selivanov · 12 years ago
  36. 421f0c7 inspect: Rename private helper function by Yury Selivanov · 12 years ago
  37. 4cb9391 inspect.test.getfullargspec: Add a unittest to ensure correct annotations by Yury Selivanov · 12 years ago
  38. d82eddc inspect.getfullargspec: Use inspect.signature API behind the scenes #17481 by Yury Selivanov · 12 years ago
  39. 07a9e45 inspect.Signature: ensure that non-default params don't follow default ones #20427 by Yury Selivanov · 12 years ago
  40. 76c6c59 inspect.signature: Add support for decorated (wrapped) builtins #20425 by Yury Selivanov · 12 years ago
  41. b77511d inspect.Signature: Make from_builtin to raise an exception if no signature can by Yury Selivanov · 12 years ago
  42. 9f2e46d Issue #20424: Python implementation of io.StringIO now supports lone surrogates. by Serhiy Storchaka · 12 years ago
  43. 61f5616 Move Misc/NEWS entries committed after releasing 3.4.0b3 to correct places. by Serhiy Storchaka · 12 years ago
  44. c92ea76 Issue #20424: Python implementation of io.StringIO now supports lone surrogates. by Serhiy Storchaka · 12 years ago
  45. d67650e Merge with 3.3 by Terry Jan Reedy · 12 years ago
  46. 1e40295 Idlelib: forward port changes that silenced 2.7 -3 deprecation warnings and by Terry Jan Reedy · 12 years ago
  47. 9b9ac95 inspect.Signature.bind: Add **kwargs/positional-only check back by Yury Selivanov · 12 years ago
  48. f40c663 asyncio doc: close the loop at exit by Victor Stinner · 12 years ago
  49. 38b0d5a inspect.Signature.bind: Fix pos-only params with defaults; fix *args in named args #19140 by Yury Selivanov · 12 years ago
  50. 8757ead inspect: Fix docstrings for Parameter & Signature classes by Yury Selivanov · 12 years ago
  51. 62560fb inspect.signature: Handle bound methods with '(*args)' signature correctly #20401 by Yury Selivanov · 12 years ago
  52. d65bc70 inspect.tests: Remove redundant unittest by Yury Selivanov · 12 years ago
  53. 4d91490 Issue #20411: Use readline.get_current_history_length to check for the presence of a history, rather than get_history_item, which assumes a history is present. by Jason R. Coombs · 12 years ago
  54. 748f40d Issue #9709: Revert 97fb852c5c26. Many extensions are not using PyMODINIT_FUNC. by Stefan Krah · 12 years ago
  55. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 12 years ago
  56. eecbbad Fix doc reference to OS X 10.9 Mavericks. by Ned Deily · 12 years ago
  57. 041ff9b asyncio doc: list Windows and Mac OS X limitations and explain how to work by Victor Stinner · 12 years ago
  58. 0adc955 NEWS: Add few missing news items by Yury Selivanov · 12 years ago
  59. e7dcc5e inspect.signature: Support classes without user-defined __init__/__new__ #20308 by Yury Selivanov · 12 years ago
  60. 7aedea4 asyncio: remove temporary aliases by Victor Stinner · 12 years ago
  61. da5fe4f inspect.signature: Add support for 'functools.partialmethod' #20223 by Yury Selivanov · 12 years ago
  62. eedf1c1 asyncio doc: subprocess_exec/subprocess_shell are not available on Windows by Victor Stinner · 12 years ago
  63. f5d2f22 Issue #19456: ntpath.join() now joins relative paths correctly when a drive by Serhiy Storchaka · 12 years ago
  64. c369c2c Issue #19456: ntpath.join() now joins relative paths correctly when a drive by Serhiy Storchaka · 12 years ago
  65. 2393dca inspect.signature: Use '/' to separate positional-only parameters from by Yury Selivanov · 12 years ago
  66. ea2d66e doc/inspect: Clarify docs for __defaults__, add docs for __kwdefaults__ #20380 by Yury Selivanov · 12 years ago
  67. 2eed8b7 inspect.getfile: Don't crash on classes without '__module__' attribute #20372 by Yury Selivanov · 12 years ago
  68. 32970b8 asyncio: IncompleteReadError is a subclass of EOFError by Victor Stinner · 12 years ago
  69. b7f19ff asyncio: document the IncompleteReadError exception by Victor Stinner · 12 years ago
  70. 9a2e75b Remove redundant emty line at the end of file. by Serhiy Storchaka · 12 years ago
  71. a28632b Issue #19077: tempfile.TemporaryDirectory cleanup no longer fails when by Serhiy Storchaka · 12 years ago
  72. 99e033b Issue #19077: tempfile.TemporaryDirectory cleanup is now most likely by Serhiy Storchaka · 12 years ago
  73. 965dc49 Merge heads by Serhiy Storchaka · 12 years ago
  74. 8b86348 asyncio: document add_signal_handler/remove_signal_handler, add an example for by Victor Stinner · 12 years ago
  75. 3c1f0f1 Issue #20395: Extract generated clinic code in Modules/_pickle.c to separate file. by Serhiy Storchaka · 12 years ago
  76. eedc1e3 Null merge 3.3 (patch already applied in Python 3.4) by Victor Stinner · 12 years ago
  77. b991597 Issue #20367: Fix behavior of concurrent.futures.as_completed() for duplicate by Victor Stinner · 12 years ago
  78. 2361216 I forgot to add a Misc/NEWS entry for issue #20394 by Christian Heimes · 12 years ago
  79. f1b1418 Closes #19966: allow hgtouch to operate on a base dir that is != the repo root. by Georg Brandl · 12 years ago
  80. 23105d8 Merge. by Larry Hastings · 12 years ago
  81. ee4cca6 Post-release bump for 3.4.0 beta 3. by Larry Hastings · 12 years ago
  82. 71215c5 merge 3.3 (closes #12704) by Benjamin Peterson · 12 years ago
  83. d1c85fd eliminate redundancy between yield stmt and yield expr docs (closes #12704) by Benjamin Peterson · 12 years ago
  84. 908669b Issue #17721: Remove non-functional configuration dialog help button until we by Terry Jan Reedy · 12 years ago
  85. 91d4278 Issue #17721: Remove non-functional configuration dialog help button until we by Terry Jan Reedy · 12 years ago
  86. 0c5b5d4 Merge with 3.3 by Terry Jan Reedy · 12 years ago
  87. 1b759bc Idlelib.calltips: add test of starred first parameters. They should not be by Terry Jan Reedy · 12 years ago
  88. 7696487 White space and merge cleanup. by Terry Jan Reedy · 12 years ago
  89. 0902ce4 Merge with 3.3 by Terry Jan Reedy · 12 years ago
  90. ddc5758 Merge heads. by Terry Jan Reedy · 12 years ago
  91. a4b6b53 Merge heads. by Terry Jan Reedy · 12 years ago
  92. e2d9b39 Issue #20338: Increase allowed tip width slightly and wrap long signagure lines. by Terry Jan Reedy · 12 years ago
  93. a0f1e22 Issue #20338: Increase allowed tip width slightly and wrap long signagure lines. by Terry Jan Reedy · 12 years ago
  94. c4ab9a4 Issue #20394: Attempt to silence CID 1164423: Division or modulo by zero in audioop_ratecv_impl() by Christian Heimes · 12 years ago
  95. 936e2f3 Issue #20193: Fix commit r6f217456b9ba by including clinic/zlibmodule.c.h instead by Christian Heimes · 12 years ago
  96. 27ea78b silence compiler warning that 's' may be used uninitialized in the load function. by Christian Heimes · 12 years ago
  97. a09daef Update docstring to mention correct PEP number. by Eli Bendersky · 12 years ago
  98. 6834a65 Issue #20367: Add Glenn Langford to Misc/ACKS by Victor Stinner · 12 years ago
  99. 2c5ddbe Issue #20193: The zlib module now uses Argument Clinic. by Serhiy Storchaka · 12 years ago
  100. 62a85b5 Issue #19990: Added tests for the imghdr module. Based on patch by Claudiu Popa. by Serhiy Storchaka · 12 years ago