summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/windows_utils.py
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: Synchronize with TulipVictor Stinner2014-03-051-2/+15
| | | | | | | | | | | | * Issue #159: Fix windows_utils.socketpair() - Use "127.0.0.1" (IPv4) or "::1" (IPv6) host instead of "localhost", because "localhost" may be a different IP address - Reject also invalid arguments: only AF_INET/AF_INET6 with SOCK_STREAM (and proto=0) are supported * Reject add/remove reader/writer when event loop is closed. * Fix ResourceWarning warnings
* asyncio: Various style nits.Guido van Rossum2013-11-011-10/+10
|
* asyncio: Add support for running subprocesses on Windows with the IOCP event ↵Guido van Rossum2013-10-301-4/+15
| | | | loop (Richard Oudkerk).
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+181