summaryrefslogtreecommitdiff
path: root/asyncio/proactor_events.py
Commit message (Expand)AuthorAgeFilesLines
* Python issue #23243: On Python 3.4 and newer, emit a ResourceWarning when anHEADmasterVictor Stinner2015-01-291-0/+11
* SSL transports now clear their reference to the waiterVictor Stinner2015-01-291-1/+1
* Enhance BaseProactorEventLoop._loop_self_reading()Victor Stinner2015-01-161-3/+9
* Fix _ProactorBasePipeTransport.close()Victor Stinner2015-01-151-1/+3
* Fix _ProactorBasePipeTransport.__repr__()Victor Stinner2015-01-151-3/+3
* _ProactorBasePipeTransport now sets _sock to None when the transport is closedVictor Stinner2015-01-141-0/+1
* Python issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-141-6/+25
* Python issue #22922: Fix ProactorEventLoop.close()Victor Stinner2015-01-131-1/+7
* Remove outdated TODO/XXXVictor Stinner2015-01-091-1/+2
* Python issue #22926: In debug mode, call_soon(), call_at() and call_later()Victor Stinner2014-12-261-4/+2
* Tulip issue #202: Add unit test of pause/resume writing for proactor socketVictor Stinner2014-12-111-4/+0
* Python issue #22922: Fix ProactorEventLoop.close()Victor Stinner2014-12-051-1/+3
* Move loop attribute to _FlowControlMixinVictor Stinner2014-11-051-2/+1
* Enhance protocol representationVictor Stinner2014-10-141-1/+7
* Tulip issue #200: Log errors in debug mode instead of simply ignoring them.Victor Stinner2014-08-251-3/+13
* Python issue 22063: socket operations (sock_recv, sock_sendall, sock_connect,Victor Stinner2014-07-301-8/+0
* Python issue 22063: socket operations (socket,recv, sock_sendall, sock_connect,Victor Stinner2014-07-291-0/+8
* _OverlappedFuture.cancel() now clears its reference to the overlapped objectVictor Stinner2014-07-251-6/+2
* Tulip issue 192, Python issue 21645: Rewrite signal handlingVictor Stinner2014-07-171-1/+1
* Tulip issue #183: log socket events in debug modeVictor Stinner2014-07-121-1/+30
* Cleanup _ProactorReadPipeTransport constructorVictor Stinner2014-07-121-1/+0
* Fix ProactorEventLoop() in debug modeVictor Stinner2014-07-121-1/+3
* Tulip issue #180: Make Server attributes and methods privateVictor Stinner2014-07-111-2/+2
* Tulip issue #181: BaseEventLoop.create_datagram_endpoint() now waits untilVictor Stinner2014-07-081-0/+1
* Backed out changeset 9b16831a863aVictor Stinner2014-07-071-1/+1
* Tulip issue #181: Faster create_connection()Victor Stinner2014-07-071-1/+1
* Python issue 21447, 21886: Fix a race condition when setting the result of aVictor Stinner2014-07-051-1/+1
* Tulip issue #171: BaseEventLoop.close() now raises an exception if the eventVictor Stinner2014-06-231-1/+1
* Tulip issue #169, Python issue #21326: Add BaseEventLoop.is_closed() methodVictor Stinner2014-06-041-8/+15
* asyncio: Fix _ProactorWritePipeTransport._pipe_closed()Victor Stinner2014-02-201-1/+1
* Issue #139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-5/+5
* transports: Make _ProactorBasePipeTransport use _FlowControlMixinYury Selivanov2014-02-181-53/+2
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-181-7/+26
* Issue #129: BaseEventLoop.sock_connect() now raises an error if the address isVictor Stinner2014-02-131-1/+8
* Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-1/+0
* Fix _ProactorWritePipeTransport._pipe_closed()Victor Stinner2014-02-041-1/+4
* Merge (manually) the subprocess_stream into defaultVictor Stinner2014-02-011-13/+21
* Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ...Guido van Rossum2014-01-311-12/+27
* _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport don'tVictor Stinner2014-01-281-1/+2
* Export more symbols: BaseEventLoop, BaseProactorEventLoop,Victor Stinner2014-01-251-0/+2
* Cleanup properly proactor event loopVictor Stinner2014-01-101-0/+10
* Support write flow control in proactor transport.Guido van Rossum2013-12-031-3/+64
* Change proactor buffer management.Guido van Rossum2013-12-021-8/+23
* Accept bytearray and memoryview, and replace asserts with raises.Guido van Rossum2013-12-021-8/+14
* Add support for running subprocesses on Windows with the IOCP event loop.Richard Oudkerk2013-10-271-2/+9
* CPython issue #19299: fix refleak test failures in test_asyncio.Guido van Rossum2013-10-201-0/+1
* MergeGuido van Rossum2013-10-181-3/+3
* MergeGuido van Rossum2013-10-171-5/+5
* Merge eof_received() change.Guido van Rossum2013-10-151-3/+2
* Port asyncio rename and new extra info to Windows.Guido van Rossum2013-10-151-2/+8