summaryrefslogtreecommitdiff
path: root/asyncio/unix_events.py
Commit message (Expand)AuthorAgeFilesLines
* Fix _UnixReadPipeTransport and _UnixWritePipeTransportVictor Stinner2015-01-291-6/+11
* SSL transports now clear their reference to the waiterVictor Stinner2015-01-291-2/+2
* Close the transport on subprocess creation failureVictor Stinner2015-01-151-1/+5
* Python issue #23243: Fix _UnixWritePipeTransport.close()Victor Stinner2015-01-151-1/+1
* UNIX pipe transports: add closed/closing in repr()Victor Stinner2015-01-141-2/+12
* Remove outdated TODO/XXXVictor Stinner2015-01-091-4/+1
* Truncate to 80 columnsVictor Stinner2015-01-091-1/+2
* Fix subprocess for close_fds=False on Python 3.3Victor Stinner2014-12-111-0/+22
* Python issue #22922: More EventLoop methods fail if the loop is closed. InitialVictor Stinner2014-12-041-0/+1
* Coroutine objects are now rejected with a TypeError by the following functions:Victor Stinner2014-11-201-2/+3
* - Issue #22841: Reject coroutines in asyncio add_signal_handler().Guido van Rossum2014-11-141-0/+3
* Move loop attribute to _FlowControlMixinVictor Stinner2014-11-051-2/+1
* unix_events: Move import statement to sync code with cpythonYury Selivanov2014-09-241-1/+2
* Tulip issue #200: Log errors in debug mode instead of simply ignoring them.Victor Stinner2014-08-251-1/+3
* _fatal_error() method of _UnixReadPipeTransport and _UnixWritePipeTransport nowVictor Stinner2014-07-301-2/+8
* Use the new os.set_blocking() function of Python 3.5 if availableVictor Stinner2014-07-291-4/+8
* signal.set_wakeup_fd() can now raise an OSError on Python 3.5Victor Stinner2014-07-221-3/+3
* Tulip issue 192, Python issue 21645: Rewrite signal handlingVictor Stinner2014-07-171-2/+18
* Tulip issue #184: Log subprocess events in debug modeVictor Stinner2014-07-141-0/+11
* Clean up some docstrings and comments. Remove unused unimplemented _read_from...Guido van Rossum2014-07-121-1/+1
* Tulip issue #183: log socket events in debug modeVictor Stinner2014-07-121-0/+36
* Tulip issue #181: BaseEventLoop.create_datagram_endpoint() now waits untilVictor Stinner2014-07-081-0/+2
* Python issue 21447, 21886: Fix a race condition when setting the result of aVictor Stinner2014-07-051-2/+2
* _UnixSubprocessTransport: fix file mode of stdinVictor Stinner2014-07-011-1/+1
* Move coroutine code in the new module asyncio.coroutinesVictor Stinner2014-06-291-4/+4
* Tulip issue #171: BaseEventLoop.close() now raises an exception if the eventVictor Stinner2014-06-231-1/+1
* Tulip issue #83, Python issue 21252: Fill some XXX docstringsVictor Stinner2014-06-051-2/+2
* Close sockets on errorsVictor Stinner2014-06-041-0/+3
* EventLoop.create_unix_server() now raises a ValueError if path and sock areVictor Stinner2014-04-051-0/+4
* asyncio: remove unused imports and unused variables noticed by pyflakesVictor Stinner2014-02-201-1/+0
* Fix spelling & typosYury Selivanov2014-02-181-2/+2
* Issue #143: UNIX domain methods, fix ResourceWarning and DeprecationWarningVictor Stinner2014-02-191-4/+4
* Issue #139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-7/+7
* transports: Make _ProactorBasePipeTransport use _FlowControlMixinYury Selivanov2014-02-181-1/+1
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-181-5/+21
* Add support for UNIX Domain Sockets. Closes issue #81.Yury Selivanov2014-02-181-2/+73
* Issue #112: Inline make_handle() into Handle constructorVictor Stinner2014-02-101-1/+1
* Merge (manually) the subprocess_stream into defaultVictor Stinner2014-02-011-6/+1
* Fix _UnixWritePipeTransport: raise BrokenPipeError when the pipe is closedVictor Stinner2014-01-301-1/+4
* Fix _make_subprocess_transport(): pass extra value to the constructorVictor Stinner2014-01-291-1/+1
* Add write flow control to unix pipes.Guido van Rossum2014-01-281-3/+11
* _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport don'tVictor Stinner2014-01-281-1/+2
* Code cleanup: remove unused functionAndrew Svetlov2014-01-261-3/+0
* Fix race in FastChildWatcher (by its original author, Anthony Baire).Guido van Rossum2014-01-251-20/+16
* Strip trailing spaceVictor Stinner2014-01-251-1/+1
* _UnixWritePipeTransport now also supports character devices, asVictor Stinner2014-01-241-3/+5
* Minimal pty support, by Jonathan Slenders.Guido van Rossum2014-01-101-2/+5
* Fix race in subprocess transport, by Victor Stinner. Fixes issue 103.Guido van Rossum2014-01-101-1/+2
* Set SA_RESTART to limit EINTR occurrences. (from CPython repo, by C.F. Natali.)Guido van Rossum2013-12-051-0/+2
* Fix from Anthony Baire for CPython issue 19566.Guido van Rossum2013-11-131-27/+41