summaryrefslogtreecommitdiff
path: root/asyncio/windows_utils.py
Commit message (Collapse)AuthorAgeFilesLines
* Python issue #23243: On Python 3.4 and newer, emit a ResourceWarning when anHEADmasterVictor Stinner2015-01-291-1/+5
| | | | event loop or a transport is not explicitly closed
* PipeHandle.fileno() now raises an exception if the pipe is closedVictor Stinner2015-01-261-0/+2
|
* PipeHandle now uses None instead of -1 for a closed handleVictor Stinner2015-01-141-5/+5
| | | | Sort also imports in windows_utils.
* Truncate to 80 columnsVictor Stinner2015-01-091-3/+4
|
* Add repr(PipeHandle)Victor Stinner2014-12-181-0/+7
|
* Reuse socket.socketpair() on Windows if availableVictor Stinner2014-10-141-41/+43
| | | | | | | Since Python 3.5, socket.socketpair() is now also available on Windows. Make csock blocking before calling the accept() method, and fix also a typo in an error message.
* Make sure that socketpair() close sockets on errorVictor Stinner2014-06-041-15/+17
| | | | Close the listening socket if sock.bind() raises an exception.
* Issue #159: Fix windows_utils.socketpair()Victor Stinner2014-03-051-2/+15
| | | | | | | * 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
* Satisfy (most) pep8 whitespace requirements.Guido van Rossum2013-11-011-10/+10
|
* Add support for running subprocesses on Windows with the IOCP event loop.Richard Oudkerk2013-10-271-4/+15
|
* Rename tulip package to asyncio.Guido van Rossum2013-10-141-0/+181