summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_...Victor Stinner2014-08-311-13/+31
* asyncio, Tulip issue 201: Fix a race condition in wait_for()Victor Stinner2014-08-281-6/+9
* asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() methodVictor Stinner2014-08-251-0/+3
* asyncio: sync with TulipVictor Stinner2014-08-256-35/+78
* Close #22063: socket operations (socket,recv, sock_sendall, sock_connect,Victor Stinner2014-07-292-0/+16
* asyncio: Use the new os.set_blocking() function of Python 3.5 if availableVictor Stinner2014-07-291-4/+8
* asyncio: sync with TulipVictor Stinner2014-07-294-64/+88
* asyncio, tulip issue 196: ProactorIocp._register() now registers the overlappedVictor Stinner2014-07-271-15/+38
* Accept optional lock object in Condition ctor (tulip issue #198)Andrew Svetlov2014-07-261-3/+6
* Tulip issue 196: _OverlappedFuture.set_result() now clears its reference to theVictor Stinner2014-07-251-5/+11
* asyncio: sync with TulipVictor Stinner2014-07-252-1/+9
* 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