Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | asyncio doc: list limitations to run subprocesses from different threads | Victor Stinner | 2015-01-09 | 1 | -0/+19 |
| | |||||
* | asyncio doc: rewrite subprocess doc | Victor Stinner | 2014-10-13 | 1 | -77/+179 |
| | | | | | | | | | | | | | | | * add a new example using transport and protocol * rewrite the example using streams to make it much simpler (remove error handling, use a simpler Python code) * copy (and adapt) more documentation from the subprocess module: - add a note about Process.wait() deadlock - add a note about shell injection - etc. * sort Process methods and attributes in the same order than subprocess.Popen methods and attributes, so the documentation looks closer * list differences between Process and subprocess.Popen APIs | ||||
* | asyncio doc: protocol_factory of subprocess_exec() and subprocess_shell() must | Victor Stinner | 2014-10-13 | 1 | -0/+6 |
| | | | | instanciate a subclass of SubprocessProtocol | ||||
* | asyncio, tulip issue 190: Process.communicate() now ignores | Victor Stinner | 2014-07-17 | 1 | -4/+5 |
| | | | | ConnectionResetError too | ||||
* | asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError | Victor Stinner | 2014-07-17 | 1 | -0/+7 |
| | | | | | | | | If you want to handle the BrokenPipeError, you can easily reimplement communicate(). Add also a unit test to ensure that stdin.write() + stdin.drain() raises BrokenPipeError. | ||||
* | asyncio: enhance documentation of platform support | Victor Stinner | 2014-07-11 | 1 | -0/+7 |
| | |||||
* | Issue #21680: Document asyncio event loops | Victor Stinner | 2014-07-08 | 1 | -12/+12 |
| | |||||
* | Closes #21758: asyncio doc: mention explicitly that subprocess parameters are | Victor Stinner | 2014-06-19 | 1 | -6/+10 |
| | | | | bytes or character strings | ||||
* | Issue #21485: remove unnecesary .flush() calls in the asyncio subprocess code | Victor Stinner | 2014-05-12 | 1 | -3/+1 |
| | | | | example | ||||
* | asyncio docs: ProactorEventLoop does not support SSL. | Guido van Rossum | 2014-05-05 | 1 | -1/+1 |
| | |||||
* | Issue #21006: asyncio doc: reorganize subprocess doc | Victor Stinner | 2014-03-25 | 1 | -4/+90 |
| | |||||
* | Issue #21006: Fix subprocess example on Windows in asyncio doc | Victor Stinner | 2014-03-21 | 1 | -1/+6 |
| | |||||
* | Close #21005: Fix documentation of asyncio.subprocess.DEVNULL | Victor Stinner | 2014-03-21 | 1 | -4/+3 |
| | |||||
* | Issue #20950: Fix typo asyncio doc, wait() has no self parameter | Victor Stinner | 2014-03-16 | 1 | -1/+5 |
| | | | | | self parameter is implicit. Mention also that communicate() and wait() are coroutines. | ||||
* | asyncio doc: functions are coroutine, they don't return a coroutine | Victor Stinner | 2014-03-13 | 1 | -2/+2 |
| | | | | It's not exact, but easier to understand. | ||||
* | asyncio doc: fix references in subprocess doc | Victor Stinner | 2014-02-24 | 1 | -2/+2 |
| | |||||
* | asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent | Victor Stinner | 2014-02-09 | 1 | -5/+1 |
| | | | | Process and Popen objects | ||||
* | Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com | Brian Curtin | 2014-02-09 | 1 | -3/+3 |
| | |||||
* | asyncio doc: add an example of asyncio.subprocess with communicate() and wait() | Victor Stinner | 2014-02-03 | 1 | -0/+40 |
| | |||||
* | asyncio.subprocess: Replace Process.get_subprocess() method with a | Victor Stinner | 2014-02-03 | 1 | -17/+17 |
| | | | | Process.subprocess read-only property | ||||
* | remove extra backtick | Benjamin Peterson | 2014-02-03 | 1 | -1/+1 |
| | |||||
* | asyncio: document the new asyncio.subprocess module | Victor Stinner | 2014-02-02 | 1 | -0/+140 |