summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/selector_events.py
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* asyncio: Better-looking errors when ssl module cannot be imported. In part by...Guido van Rossum2013-11-011-12/+19
* asyncio: Log a warning when eof_received() returns true and using ssl.Guido van Rossum2013-11-011-1/+4
* asyncio: Refactor ssl transport ready loop (Nikolay Kim).Guido van Rossum2013-11-011-41/+53
* asyncio: Add server_hostname as create_connection() argument, with secure def...Guido van Rossum2013-11-011-2/+2
* asyncio: Fold some long lines.Guido van Rossum2013-11-011-1/+2
* asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyn...Guido van Rossum2013-11-011-6/+15
* asyncio: When not closing the connection after receiving EOF, still remove th...Guido van Rossum2013-10-301-1/+6
* Issue #19299: fix refleak test failures in test_asyncioAntoine Pitrou2013-10-191-0/+1
* Verify hostname if verify_mode is CERT_OPTIONAL too.Guido van Rossum2013-10-191-1/+1
* Write flow control for asyncio (includes asyncio.streams overhaul).Guido van Rossum2013-10-181-14/+64
* Important race condition fix for Tulip.Guido van Rossum2013-10-181-33/+18
* Rename Transport.pause/resume to pause_reading/pause_writing. Also relax time...Guido van Rossum2013-10-181-7/+7
* Rename the logger to plain "logger".Guido van Rossum2013-10-171-7/+7
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+769