summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/selector_events.py
Commit message (Expand)AuthorAgeFilesLines
* asyncio: pyflakes, remove unused importVictor Stinner2015-01-211-1/+0
* asyncio: sync with TulipVictor Stinner2015-01-141-2/+3
* 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-141-1/+1
* Issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-131-21/+24
* asyncio: sync with TulipVictor Stinner2015-01-091-1/+0
* asyncio: sync with TulipVictor Stinner2015-01-091-3/+3
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-081-3/+4
* asyncio: _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-081-2/+2
* Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods ofVictor Stinner2014-12-261-1/+1
* 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: Move loop attribute to _FlowControlMixinVictor Stinner2014-11-051-2/+1
* Issue #22641: In asyncio, the default SSL context for client connections is n...Antoine Pitrou2014-10-151-6/+7
* asyncio: enhance protocol representationVictor Stinner2014-10-121-1/+6
* asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_...Victor Stinner2014-08-311-13/+31
* asyncio: sync with TulipVictor Stinner2014-08-251-15/+16
* Close #22063: socket operations (socket,recv, sock_sendall, sock_connect,Victor Stinner2014-07-291-0/+8
* asyncio: sync with TulipVictor Stinner2014-07-251-1/+4
* Python issue #21645, Tulip issue 192: Rewrite signal handlingVictor Stinner2014-07-171-1/+5
* asyncio: sync with TulipVictor Stinner2014-07-121-13/+76
* asyncio, Tulip issue 180: Make Server attributes and methods privateVictor Stinner2014-07-111-2/+2
* asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waitsVictor Stinner2014-07-081-3/+10
* asyncio: sync with TulipVictor Stinner2014-07-071-1/+1
* asyncio: sync with TulipVictor Stinner2014-07-071-1/+1
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-051-2/+3
* asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if theVictor Stinner2014-06-221-1/+1
* Tulip issue 83: document more asyncio functions in docstringsVictor Stinner2014-06-191-4/+37
* Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads allVictor Stinner2014-06-191-4/+9
* Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoopVictor Stinner2014-06-101-8/+8
* Fix for raising exception not derived from BaseException in _SelectorSslTrans...Andrew Svetlov2014-05-271-1/+1
* asyncio: Fix the second half of issue #21447: race in _write_to_self().Guido van Rossum2014-05-061-4/+11
* asyncio: Synchronize with TulipVictor Stinner2014-03-051-0/+8
* asyncio/windows_events.py: use more revelant names to overlapped callbacksVictor Stinner2014-02-261-2/+1
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-191-1/+1
* asyncio, Tulip issue 139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-10/+12
* asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixinYury Selivanov2014-02-181-71/+2
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-181-8/+27
* ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error ifVictor Stinner2014-02-131-12/+8
* asyncio: Tulip issue 112: Inline make_handle() into Handle constructorVictor Stinner2014-02-091-2/+2
* Issue #20505: Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-1/+0
* asyncio: Refactoring: move write flow control to a subclass/mixin.Guido van Rossum2014-01-291-37/+61
* Merge latest Tulip into asyncioVictor Stinner2014-01-251-1/+1
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-0/+2
* Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximumVictor Stinner2014-01-251-0/+1
* Issue #19509: Finish implementation of check_hostnameChristian Heimes2013-12-051-11/+14
* asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() acce...Guido van Rossum2013-11-271-31/+51
* Keep asyncio working with Python 3.3 too.Guido van Rossum2013-11-231-2/+9
* Issue #19735: Implement private function ssl._create_stdlib_context() toChristian Heimes2013-11-231-4/+2
* asyncio: Replace connection_refused() with error_received().Guido van Rossum2013-11-161-11/+6