summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* asyncio: sync with TulipVictor Stinner2014-07-252-27/+52
* asyncio: sync with TulipVictor Stinner2014-07-241-20/+46
* Issue #20055: Fix BaseEventLoop.stop() docstring, incomplete sentence.Victor Stinner2014-07-241-3/+3
* asyncio: sync with TulipVictor Stinner2014-07-231-3/+3
* asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutineVictor Stinner2014-07-221-19/+18
* Fix asyncio.__all__: export also unix_events and windows_events symbolsVictor Stinner2014-07-181-6/+7
* Python issue #21645, Tulip issue 192: Rewrite signal handlingVictor Stinner2014-07-173-4/+24
* asyncio, tulip issue 190: Process.communicate() now ignoresVictor Stinner2014-07-171-5/+7
* asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeErrorVictor Stinner2014-07-171-1/+5
* Issue #21163: Fix "destroy pending task" warning in test_wait_errors()Victor Stinner2014-07-161-2/+2
* Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasksVictor Stinner2014-07-161-11/+23
* asyncio tests: make quiet the logs of SSL handshake failures when running testsVictor Stinner2014-07-141-0/+16
* asyncio: sync with TulipVictor Stinner2014-07-145-41/+181
* asyncio: sync with TulipVictor Stinner2014-07-125-20/+209
* asyncio: improve the documentation of serversVictor Stinner2014-07-111-1/+3
* asyncio, Tulip issue 180: Make Server attributes and methods privateVictor Stinner2014-07-113-24/+25
* asyncio: sync with TulipVictor Stinner2014-07-113-9/+14
* asyncio: sync with TulipVictor Stinner2014-07-102-10/+3
* asyncio: sync with TulipVictor Stinner2014-07-103-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-023-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-2811-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-251-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-224-3/+7
* asyncio, Tulip issue 172: only log selector timing in debug modeVictor Stinner2014-06-221-2/+1
* asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUGVictor Stinner2014-06-221-1/+2
* asyncio: BaseEventLoop._assert_is_current_event_loop() now only raises anVictor Stinner2014-06-221-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-171-0/+18
* asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator onVictor Stinner2014-06-171-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-161-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