| Commit message (Expand) | Author | Age | Files | Lines |
* | Python issue #23243: On Python 3.4 and newer, emit a ResourceWarning when anHEADmaster | Victor Stinner | 2015-01-29 | 1 | -0/+19 |
* | Fix _UnixReadPipeTransport and _UnixWritePipeTransport | Victor Stinner | 2015-01-29 | 1 | -6/+11 |
* | SSL transports now clear their reference to the waiter | Victor Stinner | 2015-01-29 | 1 | -2/+2 |
* | Close the transport on subprocess creation failure | Victor Stinner | 2015-01-15 | 1 | -1/+5 |
* | Python issue #23243: Fix _UnixWritePipeTransport.close() | Victor Stinner | 2015-01-15 | 1 | -1/+1 |
* | UNIX pipe transports: add closed/closing in repr() | Victor Stinner | 2015-01-14 | 1 | -2/+12 |
* | Remove outdated TODO/XXX | Victor Stinner | 2015-01-09 | 1 | -4/+1 |
* | Truncate to 80 columns | Victor Stinner | 2015-01-09 | 1 | -1/+2 |
* | Fix subprocess for close_fds=False on Python 3.3 | Victor Stinner | 2014-12-11 | 1 | -0/+22 |
* | Python issue #22922: More EventLoop methods fail if the loop is closed. Initial | Victor Stinner | 2014-12-04 | 1 | -0/+1 |
* | Coroutine objects are now rejected with a TypeError by the following functions: | Victor Stinner | 2014-11-20 | 1 | -2/+3 |
* | - Issue #22841: Reject coroutines in asyncio add_signal_handler(). | Guido van Rossum | 2014-11-14 | 1 | -0/+3 |
* | Move loop attribute to _FlowControlMixin | Victor Stinner | 2014-11-05 | 1 | -2/+1 |
* | unix_events: Move import statement to sync code with cpython | Yury Selivanov | 2014-09-24 | 1 | -1/+2 |
* | Tulip issue #200: Log errors in debug mode instead of simply ignoring them. | Victor Stinner | 2014-08-25 | 1 | -1/+3 |
* | _fatal_error() method of _UnixReadPipeTransport and _UnixWritePipeTransport now | Victor Stinner | 2014-07-30 | 1 | -2/+8 |
* | Use the new os.set_blocking() function of Python 3.5 if available | Victor Stinner | 2014-07-29 | 1 | -4/+8 |
* | signal.set_wakeup_fd() can now raise an OSError on Python 3.5 | Victor Stinner | 2014-07-22 | 1 | -3/+3 |
* | Tulip issue 192, Python issue 21645: Rewrite signal handling | Victor Stinner | 2014-07-17 | 1 | -2/+18 |
* | Tulip issue #184: Log subprocess events in debug mode | Victor Stinner | 2014-07-14 | 1 | -0/+11 |
* | Clean up some docstrings and comments. Remove unused unimplemented _read_from... | Guido van Rossum | 2014-07-12 | 1 | -1/+1 |
* | Tulip issue #183: log socket events in debug mode | Victor Stinner | 2014-07-12 | 1 | -0/+36 |
* | Tulip issue #181: BaseEventLoop.create_datagram_endpoint() now waits until | Victor Stinner | 2014-07-08 | 1 | -0/+2 |
* | Python issue 21447, 21886: Fix a race condition when setting the result of a | Victor Stinner | 2014-07-05 | 1 | -2/+2 |
* | _UnixSubprocessTransport: fix file mode of stdin | Victor Stinner | 2014-07-01 | 1 | -1/+1 |
* | Move coroutine code in the new module asyncio.coroutines | Victor Stinner | 2014-06-29 | 1 | -4/+4 |
* | Tulip issue #171: BaseEventLoop.close() now raises an exception if the event | Victor Stinner | 2014-06-23 | 1 | -1/+1 |
* | Tulip issue #83, Python issue 21252: Fill some XXX docstrings | Victor Stinner | 2014-06-05 | 1 | -2/+2 |
* | Close sockets on errors | Victor Stinner | 2014-06-04 | 1 | -0/+3 |
* | EventLoop.create_unix_server() now raises a ValueError if path and sock are | Victor Stinner | 2014-04-05 | 1 | -0/+4 |
* | asyncio: remove unused imports and unused variables noticed by pyflakes | Victor Stinner | 2014-02-20 | 1 | -1/+0 |
* | Fix spelling & typos | Yury Selivanov | 2014-02-18 | 1 | -2/+2 |
* | Issue #143: UNIX domain methods, fix ResourceWarning and DeprecationWarning | Victor Stinner | 2014-02-19 | 1 | -4/+4 |
* | Issue #139: Improve error messages on "fatal errors" | Victor Stinner | 2014-02-19 | 1 | -7/+7 |
* | transports: Make _ProactorBasePipeTransport use _FlowControlMixin | Yury Selivanov | 2014-02-18 | 1 | -1/+1 |
* | Add new event loop exception handling API (closes issue #80). | Yury Selivanov | 2014-02-18 | 1 | -5/+21 |
* | Add support for UNIX Domain Sockets. Closes issue #81. | Yury Selivanov | 2014-02-18 | 1 | -2/+73 |
* | Issue #112: Inline make_handle() into Handle constructor | Victor Stinner | 2014-02-10 | 1 | -1/+1 |
* | Merge (manually) the subprocess_stream into default | Victor Stinner | 2014-02-01 | 1 | -6/+1 |
* | Fix _UnixWritePipeTransport: raise BrokenPipeError when the pipe is closed | Victor Stinner | 2014-01-30 | 1 | -1/+4 |
* | Fix _make_subprocess_transport(): pass extra value to the constructor | Victor Stinner | 2014-01-29 | 1 | -1/+1 |
* | Add write flow control to unix pipes. | Guido van Rossum | 2014-01-28 | 1 | -3/+11 |
* | _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport don't | Victor Stinner | 2014-01-28 | 1 | -1/+2 |
* | Code cleanup: remove unused function | Andrew Svetlov | 2014-01-26 | 1 | -3/+0 |
* | Fix race in FastChildWatcher (by its original author, Anthony Baire). | Guido van Rossum | 2014-01-25 | 1 | -20/+16 |
* | Strip trailing space | Victor Stinner | 2014-01-25 | 1 | -1/+1 |
* | _UnixWritePipeTransport now also supports character devices, as | Victor Stinner | 2014-01-24 | 1 | -3/+5 |
* | Minimal pty support, by Jonathan Slenders. | Guido van Rossum | 2014-01-10 | 1 | -2/+5 |
* | Fix race in subprocess transport, by Victor Stinner. Fixes issue 103. | Guido van Rossum | 2014-01-10 | 1 | -1/+2 |
* | Set SA_RESTART to limit EINTR occurrences. (from CPython repo, by C.F. Natali.) | Guido van Rossum | 2013-12-05 | 1 | -0/+2 |