summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Issue #23197: On SSL handshake failure on matching hostname, check if theVictor Stinner2015-01-141-1/+2
* Issue #23197, asyncio: On SSL handshake failure, check if the waiter isVictor Stinner2015-01-142-3/+4
* Python issue #23173: sync with TulipVictor Stinner2015-01-142-27/+66
* Issue #23198: Reactor asyncio.StreamReaderVictor Stinner2015-01-131-25/+22
* Issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-134-27/+694
* Issue #22922: Fix ProactorEventLoop.close()Victor Stinner2015-01-131-1/+7
* Issue #23209: Break some reference cycles in asyncio. Patch written by MartinVictor Stinner2015-01-092-1/+2
* asyncio: sync with TulipVictor Stinner2015-01-095-11/+10
* asyncio: sync with TulipVictor Stinner2015-01-093-7/+16
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-087-15/+23
* asyncio: _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-082-3/+3
* Issue #23140, asyncio: Fix cancellation of Process.wait(). Check the state ofVictor Stinner2015-01-061-1/+2
* Issue #23046: Expose the BaseEventLoop class in the asyncio namespaceVictor Stinner2015-01-062-2/+4
* Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods ofVictor Stinner2014-12-263-23/+23
* asyncio doc: update also Queue docstringsVictor Stinner2014-12-221-3/+7
* asyncio: IocpProactor.wait_for_handle() test now also checks the result of theVictor Stinner2014-12-191-0/+5
* asyncio: sync with TulipVictor Stinner2014-12-183-2/+9
* Issue #23074: asyncio.get_event_loop() now raises an exception if the threadVictor Stinner2014-12-182-4/+4
* asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3Victor Stinner2014-12-111-0/+22
* asyncio, tulip issue 202: Add unit test of pause/resume writing for proactorVictor Stinner2014-12-111-4/+0
* Closes #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop theVictor Stinner2014-12-051-2/+12
* Issue #22922: Fix ProactorEventLoop.close()Victor Stinner2014-12-051-1/+3
* Closes #22922: More EventLoop methods fail if the loop is closed. Initial patchVictor Stinner2014-12-042-0/+5
* asyncio: Initialize more Future and Task attributes in the class definition toVictor Stinner2014-12-042-5/+5
* Closes #22475: asyncio doc, fix Task.get_stack() docVictor Stinner2014-12-021-1/+1
* Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
* Closes #22685, asyncio: Set the transport of stdout and stderr StreamReaderVictor Stinner2014-11-251-5/+12
* don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-1/+1
* asyncio: BaseSelectorEventLoop.close() now closes the self-pipe before callingVictor Stinner2014-11-201-1/+3
* asyncio: Coroutine objects are now rejected with a TypeError by the followingVictor Stinner2014-11-202-6/+10
* asyncio: Fix formatting of the "Future exception was never retrieved" inVictor Stinner2014-11-201-3/+4
* - Issue #22841: Reject coroutines in asyncio add_signal_handler().Guido van Rossum2014-11-141-0/+3
* asyncio: Move loop attribute to _FlowControlMixinVictor Stinner2014-11-054-7/+6
* Issue #22641: In asyncio, the default SSL context for client connections is n...Antoine Pitrou2014-10-152-7/+19
* Issue #18643: asyncio.windows_utils now reuse socket.socketpair() on Windows ifVictor Stinner2014-10-141-41/+43
* asyncio: enhance protocol representationVictor Stinner2014-10-122-2/+13
* Issue #22601: run_forever() now consumes BaseException of the temporary taskVictor Stinner2014-10-111-1/+9
* Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayedVictor Stinner2014-09-301-4/+7
* asyncio: Improve canceled timer handles cleanup. Closes issue #22448.Yury Selivanov2014-09-252-16/+57
* asyncio.unix_events: Move import statement to match tulip codeYury Selivanov2014-09-251-1/+2
* Apply asyncio Task English fixes to docstrings as well.R David Murray2014-09-241-9/+10
* asyncio, Tulip issue 206: In debug mode, keep the callback in theVictor Stinner2014-09-171-13/+19
* Issue #22369: Change "context manager protocol" to "context management protoc...Serhiy Storchaka2014-09-101-2/+2
* 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