summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/selector_events.py
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() ↵Guido van Rossum2013-11-271-31/+51
| | | | accept bytearray/memoryview too. Change some asserts with proper exceptions.
* 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
| | | | | create SSLContext objects in Python's stdlib module. It provides a single configuration point and makes use of SSLContext.load_default_certs().
* 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 ↵Guido van Rossum2013-11-011-12/+19
| | | | by Arnaud Faure.
* 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 ↵Guido van Rossum2013-11-011-2/+2
| | | | default.
* asyncio: Fold some long lines.Guido van Rossum2013-11-011-1/+2
|
* asyncio: Pause accepting whenever accept() returns certain errors. Fixes ↵Guido van Rossum2013-11-011-6/+15
| | | | asyncio issue #78.
* asyncio: When not closing the connection after receiving EOF, still remove ↵Guido van Rossum2013-10-301-1/+6
| | | | the read handler.
* 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 ↵Guido van Rossum2013-10-181-7/+7
| | | | timeout in test_call_later().
* 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