Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-14 | 1 | -1/+39 |
| | | | | | | | | | | | | | | | | | | | | * Tulip issue #184: Log subprocess events in debug mode - Log stdin, stdout and stderr transports and protocols - Log process identifier (pid) - Log connection of pipes - Log process exit - Log Process.communicate() tasks: feed stdin, read stdout and stderr - Add __repr__() method to many classes related to subprocesses * Add BaseSubprocessTransport._pid attribute. Store the pid so it is still accessible after the process exited. It's more convinient for debug. * create_connection(): add the socket in the "connected to" debug log * Clean up some docstrings and comments. Remove unused unimplemented _read_from_self(). | ||||
* | asyncio: sync with Tulip, add a new asyncio.coroutines module | Victor Stinner | 2014-06-28 | 1 | -2/+2 |
| | |||||
* | Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module | Victor Stinner | 2014-02-01 | 1 | -14/+9 |
| | | | | | | | | | | | | | | | | | | | | * Add a new asyncio.subprocess module * Add new create_subprocess_exec() and create_subprocess_shell() functions * The new asyncio.subprocess.SubprocessStreamProtocol creates stream readers for stdout and stderr and a stream writer for stdin. * The new asyncio.subprocess.Process class offers an API close to the subprocess.Popen class: - pid, returncode, stdin, stdout and stderr attributes - communicate(), wait(), send_signal(), terminate() and kill() methods * Remove STDIN (0), STDOUT (1) and STDERR (2) constants from base_subprocess and unix_events, to not be confused with the symbols with the same name of subprocess and asyncio.subprocess modules * _ProactorBasePipeTransport.get_write_buffer_size() now counts also the size of the pending write * _ProactorBaseWritePipeTransport._loop_writing() may now pause the protocol if the write buffer size is greater than the high water mark (64 KB by default) | ||||
* | asyncio: Pass through pause/resume from subprocess pipe proto to subprocess ↵ | Guido van Rossum | 2014-01-29 | 1 | -2/+5 |
| | | | | proto. Also kill dummy eof_received(). | ||||
* | asyncio: Get rid of _try_connected(). | Victor Stinner | 2014-01-29 | 1 | -18/+14 |
| | |||||
* | Merge latest Tulip into asyncio | Andrew Svetlov | 2014-01-26 | 1 | -1/+0 |
| | |||||
* | asyncio: Add new file (forgotten). | Guido van Rossum | 2013-10-30 | 1 | -0/+166 |