summaryrefslogtreecommitdiff
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
...
* asyncio: sync with TulipVictor Stinner2014-07-113-9/+14
* asyncio: sync with TulipVictor Stinner2014-07-112-10/+3
* asyncio: sync with TulipVictor Stinner2014-07-113-8/+28
* asyncio: sync with TulipVictor Stinner2014-07-101-4/+14
* asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waitsVictor Stinner2014-07-084-5/+18
* asyncio: sync with TulipVictor Stinner2014-07-085-3/+20
* asyncio: sync with TulipVictor Stinner2014-07-072-2/+2
* asyncio: sync with TulipVictor Stinner2014-07-073-4/+4
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-057-7/+21
* asyncio: sync with TulipVictor Stinner2014-07-033-7/+12
* Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly()Victor Stinner2014-06-303-1/+14
* asyncio: sync with TulipVictor Stinner2014-06-302-10/+51
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-2911-182/+204
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-274-20/+67
* asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutineVictor Stinner2014-06-271-7/+10
* asyncio: Handle error handler: enhance formatting of the callbackVictor Stinner2014-06-261-2/+2
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-253-53/+102
* asyncio: repr(Task) now also contains the line number even if the coroutine isVictor Stinner2014-06-241-2/+4
* asyncio: Log an error if a Task is destroyed while it is still pendingVictor Stinner2014-06-242-0/+16
* asyncio: Fix BaseEventLoop._assert_is_current_event_loop(): get_event_loop()Victor Stinner2014-06-231-2/+5
* asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if theVictor Stinner2014-06-234-3/+7
* asyncio, Tulip issue 172: only log selector timing in debug modeVictor Stinner2014-06-231-2/+1
* asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUGVictor Stinner2014-06-231-1/+2
* asyncio: BaseEventLoop._assert_is_current_event_loop() now only raises anVictor Stinner2014-06-231-1/+2
* asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 msVictor Stinner2014-06-201-5/+27
* Tulip issue 83: document more asyncio functions in docstringsVictor Stinner2014-06-192-7/+55
* Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads allVictor Stinner2014-06-191-4/+9
* asyncio: Refactor tests: add a base TestCase classVictor Stinner2014-06-181-0/+18
* asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator onVictor Stinner2014-06-181-4/+6
* Issue #21723: asyncio.Queue: support any type of number (ex: float) for theVictor Stinner2014-06-171-3/+3
* asyncio: Task.__repr__() now also handles CoroWrapperVictor Stinner2014-06-171-1/+1
* asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task)Victor Stinner2014-06-123-2/+45
* Issue #21596: asyncio.wait(): mention that the sequence of futures must notVictor Stinner2014-06-101-0/+2
* Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoopVictor Stinner2014-06-103-16/+42
* Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncioVictor Stinner2014-06-052-14/+25
* Issue #21119: asyncio: Make sure that socketpair() close sockets on errorVictor Stinner2014-06-041-15/+17
* Issue #21119: asyncio now closes sockets on errorsVictor Stinner2014-06-042-0/+11
* Issue #21601: Document asyncio.Task.cancel(). Initial patch written by VajraskyVictor Stinner2014-06-021-2/+2
* Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe docVictor Stinner2014-05-291-3/+3
* Fix for raising exception not derived from BaseException in _SelectorSslTrans...Andrew Svetlov2014-05-271-1/+1
* asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ...Guido van Rossum2014-05-121-6/+11
* asyncio: Upstream issue #167: remove dead code, by Marc Schlaich.Guido van Rossum2014-05-101-5/+1
* asyncio: Fix the second half of issue #21447: race in _write_to_self().Guido van Rossum2014-05-061-4/+11
* asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.Guido van Rossum2014-04-272-2/+2
* asyncio: Be careful accessing instance variables in __del__ (closes #21340).Guido van Rossum2014-04-271-1/+3
* asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163).Guido van Rossum2014-04-151-0/+12
* asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-151-0/+2
* asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1Yury Selivanov2014-04-141-1/+4
* Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError ifVictor Stinner2014-04-071-0/+4
* asyncio: Document Task.cancel() properly.Victor Stinner2014-04-071-0/+19