1. 8f74a73 Issue #20354: Mention the fix in Misc/NEWS by Victor Stinner · 11 years ago
  2. dd382ef Issue #20354: Fix alignment issue in the tracemalloc module on 64-bit by Victor Stinner · 11 years ago
  3. a17b6bb Issue #20162: Fix an alignment issue in the siphash24() hash function which by Victor Stinner · 11 years ago
  4. 606ab03 asyncio doc: add "Concurrency and multithreading" section by Victor Stinner · 11 years ago
  5. 45b27ed asyncio doc: document the granularity of the event loop by Victor Stinner · 11 years ago
  6. 55effc6 Issue #20452: Fix test_time_and_call_at() of test_asyncio on Windows by Victor Stinner · 11 years ago
  7. 1144214 Issue #20452: test_asyncio checks also the granularity by Victor Stinner · 11 years ago
  8. 6d300d6 Fix extra line added in 0bcf23a52d55 by Brian Quinlan · 11 years ago
  9. 2b754f4 Issue #20319: concurrent.futures.wait() can block forever even if Futures have completed by Brian Quinlan · 11 years ago
  10. 0ba5f0d inspect: Add some comments in Parameter.__eq__ method by Yury Selivanov · 11 years ago
  11. 5334bcd inspect.Signauture.from_function: validate duck functions in Signature constructor #17159 by Yury Selivanov · 11 years ago
  12. 63da7c7 inspect.signature: Support duck-types of Python functions (Cython, for instance) #17159 by Yury Selivanov · 11 years ago
  13. 4ded1f3 NEWS: Add news item for #18801 by Yury Selivanov · 11 years ago
  14. 0860a0b inspect.classify_class_attrs: Classify object.__new__ and __init__ correctly #18801 by Yury Selivanov · 11 years ago
  15. 28479d8 Issue #20460: Merge with 3.3 by Zachary Ware · 11 years ago
  16. a479b75 Issue #20460: Render 'bytes' as a class, not a function. by Zachary Ware · 11 years ago
  17. 607bc3d Merge with 3.3 by Zachary Ware · 11 years ago
  18. 19c1f3d Fix unfinished thought in xml overview page. Suggested by Bo Bayles on docs@. by Zachary Ware · 11 years ago
  19. fe0f0b0 Typo fix by Andrew Kuchling · 11 years ago
  20. 1088d98 The function name for cmath.isinf in PyArg_ParseTuple() was wrong. by Brett Cannon · 11 years ago
  21. 62510dc Issue #20452: test_asyncio: Add more info if the test fails by Victor Stinner · 11 years ago
  22. 1506df2 Issue #20455: Add a resolution attribute to IocpProactor (1 ms) by Victor Stinner · 11 years ago
  23. f2e1768 Issue #20455: asyncio: use the same code to round a timeout than the selectors by Victor Stinner · 11 years ago
  24. 665758f Issue #20455: math.ceil() returns an int in Python 3, no need to cast the by Victor Stinner · 11 years ago
  25. 20b017e Windows buildbot: use --timeout feature in Tools/buildbot/test.bat by Victor Stinner · 11 years ago
  26. 4205065 Issue #20390: Removing detritus from Argument Clinic "file preset" name change. by Larry Hastings · 11 years ago
  27. b60e9ca Issue #20455: asyncio: write a new write pipe transport class for proactor (on by Victor Stinner · 11 years ago
  28. 61b3c9b asyncio: Fix _UnixWritePipeTransport, raise BrokenPipeError when the pipe is by Victor Stinner · 11 years ago
  29. fcfb946 Issue #20311, #20452: poll and epoll now round the timeout away from zero, by Victor Stinner · 11 years ago
  30. 49d0f4e Issue #20452: Remove debug code, no more needed by Victor Stinner · 11 years ago
  31. 323748e asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written by Victor Stinner · 11 years ago
  32. dcd9740 Issue #20452: select and selectors round (again) timeout away from zero for by Victor Stinner · 11 years ago
  33. 31f6504 Issue #20452: Oops, fix debug code :-/ by Victor Stinner · 11 years ago
  34. 0278032 Issue #20452: add more info in case of test_asyncio failure to try to debug the by Victor Stinner · 11 years ago
  35. a849be9 asyncio: Fix misc whitespace issues. by Guido van Rossum · 11 years ago
  36. 1c16537 asyncio: Fix granularity of test_utils.TestLoop. by Victor Stinner · 11 years ago
  37. 9572898 asyncio: Future.set_exception(exc) should instantiate exc if it is a class. by Victor Stinner · 11 years ago
  38. 91445fb overlapped.c: Fix usage of the union by Victor Stinner · 11 years ago
  39. 63a615c Remove issue 19081 Misc/NEWS entry since it isn't entirely fixed yet. by Gregory P. Smith · 11 years ago
  40. 844dcfb Remove issue 19081 Misc/NEWS entry since it isn't entirely fixed yet. by Gregory P. Smith · 11 years ago
  41. d71e52f inspect.doc: Soften the note about inspect.signature not supporting by Yury Selivanov · 11 years ago
  42. 224c9c1 inspect.docs: Document constructors for Signature & Parameter #20442 by Yury Selivanov · 11 years ago
  43. 7835689 inspect.docs: Document constructors for Signature & Parameter #20442 by Yury Selivanov · 11 years ago
  44. 1ad5afc asyncio: document iscoroutine(), iscoroutinefunction() and wait_for() by Victor Stinner · 11 years ago
  45. 0e5b241 Issue #20373: generalize use of test.script_helper in test_warnings. Patch by Arfrever. by Antoine Pitrou · 11 years ago
  46. bb08b36 Issue #20373: generalize use of test.script_helper in test_warnings. Patch by Arfrever. by Antoine Pitrou · 11 years ago
  47. 9e3a60b More asyncio news. by Guido van Rossum · 11 years ago
  48. e623a12 asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instead of assert. by Victor Stinner · 11 years ago
  49. 73f10fd asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor. by Victor Stinner · 11 years ago
  50. 48c66c3 asyncio: wait_for() now accepts None as timeout (Victor Stinner). by Guido van Rossum · 11 years ago
  51. 1e9a446 asyncio: Pass through pause/resume from subprocess pipe proto to subprocess proto. Also kill dummy eof_received(). by Guido van Rossum · 11 years ago
  52. 4d62d0b asyncio: Refactor drain logic in streams.py to be reusable. by Guido van Rossum · 11 years ago
  53. aaabc4f asyncio: Get rid of _try_connected(). by Victor Stinner · 11 years ago
  54. 47fb97e asyncio: Add write flow control to unix pipes. by Guido van Rossum · 11 years ago
  55. 3ccead1 asyncio: Refactoring: move write flow control to a subclass/mixin. by Guido van Rossum · 11 years ago
  56. 63b4d4b asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport shouldn't log BrokenPipeError nor ConnectionResetError. by Victor Stinner · 11 years ago
  57. 89ca85c inspect.Signature.from_function: Use CO_VARARGS & CO_VARKEYWORDS constants by Yury Selivanov · 11 years ago
  58. 0486f81 inspect.signature: Make sure that if a callable object has '_patialmethod' by Yury Selivanov · 11 years ago
  59. c45873e inspect.Signature.bind: Update method signature to rule out possiblity by Yury Selivanov · 11 years ago
  60. 421f0c7 inspect: Rename private helper function by Yury Selivanov · 11 years ago
  61. 4cb9391 inspect.test.getfullargspec: Add a unittest to ensure correct annotations by Yury Selivanov · 11 years ago
  62. d82eddc inspect.getfullargspec: Use inspect.signature API behind the scenes #17481 by Yury Selivanov · 11 years ago
  63. 07a9e45 inspect.Signature: ensure that non-default params don't follow default ones #20427 by Yury Selivanov · 11 years ago
  64. 76c6c59 inspect.signature: Add support for decorated (wrapped) builtins #20425 by Yury Selivanov · 11 years ago
  65. b77511d inspect.Signature: Make from_builtin to raise an exception if no signature can by Yury Selivanov · 11 years ago
  66. 9f2e46d Issue #20424: Python implementation of io.StringIO now supports lone surrogates. by Serhiy Storchaka · 11 years ago
  67. 61f5616 Move Misc/NEWS entries committed after releasing 3.4.0b3 to correct places. by Serhiy Storchaka · 11 years ago
  68. c92ea76 Issue #20424: Python implementation of io.StringIO now supports lone surrogates. by Serhiy Storchaka · 11 years ago
  69. d67650e Merge with 3.3 by Terry Jan Reedy · 11 years ago
  70. 1e40295 Idlelib: forward port changes that silenced 2.7 -3 deprecation warnings and by Terry Jan Reedy · 11 years ago
  71. 9b9ac95 inspect.Signature.bind: Add **kwargs/positional-only check back by Yury Selivanov · 11 years ago
  72. f40c663 asyncio doc: close the loop at exit by Victor Stinner · 11 years ago
  73. 38b0d5a inspect.Signature.bind: Fix pos-only params with defaults; fix *args in named args #19140 by Yury Selivanov · 11 years ago
  74. 8757ead inspect: Fix docstrings for Parameter & Signature classes by Yury Selivanov · 11 years ago
  75. 62560fb inspect.signature: Handle bound methods with '(*args)' signature correctly #20401 by Yury Selivanov · 11 years ago
  76. d65bc70 inspect.tests: Remove redundant unittest by Yury Selivanov · 11 years ago
  77. 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 · 11 years ago
  78. 748f40d Issue #9709: Revert 97fb852c5c26. Many extensions are not using PyMODINIT_FUNC. by Stefan Krah · 11 years ago
  79. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  80. eecbbad Fix doc reference to OS X 10.9 Mavericks. by Ned Deily · 11 years ago
  81. 041ff9b asyncio doc: list Windows and Mac OS X limitations and explain how to work by Victor Stinner · 11 years ago
  82. 0adc955 NEWS: Add few missing news items by Yury Selivanov · 11 years ago
  83. e7dcc5e inspect.signature: Support classes without user-defined __init__/__new__ #20308 by Yury Selivanov · 11 years ago
  84. 7aedea4 asyncio: remove temporary aliases by Victor Stinner · 11 years ago
  85. da5fe4f inspect.signature: Add support for 'functools.partialmethod' #20223 by Yury Selivanov · 11 years ago
  86. eedf1c1 asyncio doc: subprocess_exec/subprocess_shell are not available on Windows by Victor Stinner · 11 years ago
  87. f5d2f22 Issue #19456: ntpath.join() now joins relative paths correctly when a drive by Serhiy Storchaka · 11 years ago
  88. c369c2c Issue #19456: ntpath.join() now joins relative paths correctly when a drive by Serhiy Storchaka · 11 years ago
  89. 2393dca inspect.signature: Use '/' to separate positional-only parameters from by Yury Selivanov · 11 years ago
  90. ea2d66e doc/inspect: Clarify docs for __defaults__, add docs for __kwdefaults__ #20380 by Yury Selivanov · 11 years ago
  91. 2eed8b7 inspect.getfile: Don't crash on classes without '__module__' attribute #20372 by Yury Selivanov · 11 years ago
  92. 32970b8 asyncio: IncompleteReadError is a subclass of EOFError by Victor Stinner · 11 years ago
  93. b7f19ff asyncio: document the IncompleteReadError exception by Victor Stinner · 11 years ago
  94. 9a2e75b Remove redundant emty line at the end of file. by Serhiy Storchaka · 11 years ago
  95. a28632b Issue #19077: tempfile.TemporaryDirectory cleanup no longer fails when by Serhiy Storchaka · 11 years ago
  96. 99e033b Issue #19077: tempfile.TemporaryDirectory cleanup is now most likely by Serhiy Storchaka · 11 years ago
  97. 965dc49 Merge heads by Serhiy Storchaka · 11 years ago
  98. 8b86348 asyncio: document add_signal_handler/remove_signal_handler, add an example for by Victor Stinner · 11 years ago
  99. 3c1f0f1 Issue #20395: Extract generated clinic code in Modules/_pickle.c to separate file. by Serhiy Storchaka · 11 years ago
  100. eedc1e3 Null merge 3.3 (patch already applied in Python 3.4) by Victor Stinner · 11 years ago