summaryrefslogtreecommitdiff
path: root/Lib/asyncio/unix_events.py
Commit message (Expand)AuthorAgeFilesLines
...
* asyncio: sync with TulipVictor Stinner2014-07-141-1/+12
* asyncio: sync with TulipVictor Stinner2014-07-121-0/+36
* asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waitsVictor Stinner2014-07-081-0/+2
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-051-2/+2
* asyncio: sync with TulipVictor Stinner2014-07-031-1/+1
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-291-4/+4
* asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if theVictor Stinner2014-06-231-1/+1
* Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncioVictor Stinner2014-06-051-2/+2
* Issue #21119: asyncio now closes sockets on errorsVictor Stinner2014-06-041-0/+3
* Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError ifVictor Stinner2014-04-071-0/+4
* asyncio: remove unused imports and unused variables noticed by pyflakesVictor Stinner2014-02-201-1/+0
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-181-2/+2
* asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning andVictor Stinner2014-02-191-4/+4
* asyncio, Tulip issue 139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-7/+7
* asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixinYury Selivanov2014-02-181-1/+1
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-181-5/+21
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-181-2/+73
* asyncio: Tulip issue 112: Inline make_handle() into Handle constructorVictor Stinner2014-02-101-1/+1
* Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess moduleVictor Stinner2014-02-011-6/+1
* asyncio: Fix _UnixWritePipeTransport, raise BrokenPipeError when the pipe isVictor Stinner2014-01-311-1/+4
* asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor.Victor Stinner2014-01-291-1/+1
* asyncio: Add write flow control to unix pipes.Guido van Rossum2014-01-291-3/+11
* asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTrans...Victor Stinner2014-01-291-1/+2
* Merge latest Tulip into asyncioAndrew Svetlov2014-01-261-3/+0
* asyncio: Fix race in FastChildWatcher (by its original author, Anthony Baire).Guido van Rossum2014-01-251-20/+16
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-3/+5
* asyncio: Minimal pty support in UNIX read pipe, by Jonathan Slenders.Guido van Rossum2014-01-101-2/+5
* asyncio: Fix race in subprocess transport, by Victor Stinner.Guido van Rossum2014-01-101-1/+2
* Issue #19850: asyncio: Set SA_RESTART when registering a signal handler toCharles-Fran?ois Natali2013-12-051-0/+2
* asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).Guido van Rossum2013-11-131-28/+41
* asyncio: Temporary fix by Victor Stinner for issue 19566.Guido van Rossum2013-11-131-2/+3
* asyncio: Add close() back to Unix selector event loop, to remove all signal h...Guido van Rossum2013-11-061-0/+5
* asyncio: Refactor SIGCHLD handling. By Anthony Baire.Guido van Rossum2013-11-041-48/+348
* asyncio: Add support for running subprocesses on Windows with the IOCP event ...Guido van Rossum2013-10-301-142/+3
* Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX ...Guido van Rossum2013-10-211-4/+25
* asyncio: be more lenient if we don't understand status returned by waitpid().Guido van Rossum2013-10-211-13/+13
* 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
* Rename Transport.pause/resume to pause_reading/pause_writing. Also relax time...Guido van Rossum2013-10-181-2/+2
* Rename the logger to plain "logger".Guido van Rossum2013-10-171-8/+8
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+541