summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: Pause accepting whenever accept() returns certain errors. Fixes ↵Guido van Rossum2013-11-012-7/+19
| | | | asyncio issue #78.
* asyncio: Add new file (forgotten).Guido van Rossum2013-10-301-0/+166
|
* asyncio: Add support for running subprocesses on Windows with the IOCP event ↵Guido van Rossum2013-10-305-155/+66
| | | | loop (Richard Oudkerk).
* asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk).Guido van Rossum2013-10-301-0/+40
|
* asyncio: Update some comments.Guido van Rossum2013-10-301-3/+1
|
* asyncio: When not closing the connection after receiving EOF, still remove ↵Guido van Rossum2013-10-301-1/+6
| | | | the read handler.
* Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX ↵Guido van Rossum2013-10-221-4/+25
| | | | hang).
* asyncio: be more lenient if we don't understand status returned by waitpid().Guido van Rossum2013-10-211-13/+13
| | | | | This should have no effect, it's a "shouldn't happe" case. Also tidied up some comments.
* Close #19297: fix resource warnings in test_asyncio. Patch by Vajrasky Kok.Antoine Pitrou2013-10-201-0/+1
|
* Issue #19310: asyncio: fix child processes reaping logic.Charles-François Natali2013-10-201-17/+19
|
* Issue #19309: asyncio: make waitpid() wait for all child processes, not onlyCharles-François Natali2013-10-201-1/+1
| | | | those in the same process group.
* (Hopefully) proper fix for gentoo buildbot failure due to lacking AF_INET6 ↵Guido van Rossum2013-10-201-1/+5
| | | | | | support. This should supersede revision e3ec6b17260c (but please test before removing that).
* Issue #19305: try to fix sporadic test_asyncio failure on FreeBSD 10.0Antoine Pitrou2013-10-191-0/+15
|
* Issue #19299: fix refleak test failures in test_asyncioAntoine Pitrou2013-10-193-0/+10
|
* 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-184-72/+267
|
* 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-185-17/+17
| | | | timeout in test_call_later().
* Rename the logger to plain "logger".Guido van Rossum2013-10-179-35/+36
|
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-1718-0/+5708