summaryrefslogtreecommitdiff
path: root/tests/test_subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* Merge Tulip into TrolliusVictor Stinner2015-01-151-53/+67
|\
| * Merge Tulip into TrolliusVictor Stinner2015-01-151-51/+64
| |\
| | * Merge Tulip into TrolliusVictor Stinner2015-01-091-49/+62
| | |\
| | | * In trollius, trollius.test_support is always availableVictor Stinner2014-12-271-4/+1
| | | * Merge Tulip into TrolliusVictor Stinner2014-12-261-42/+58
| | | |\
| | | | * Don't skip failing test, we must fix itVictor Stinner2014-12-191-3/+0
| | | | * Skip test_pause_reading on Windows, the test failsVictor Stinner2014-12-191-0/+3
| | | | * Merge Tulip into TrolliusVictor Stinner2014-12-191-43/+59
| | | | |\
| | | | | * Merge Tulip into TrolliusVictor Stinner2014-12-181-2/+8
| | | | | |\
| | | | | * \ Merge Tulip into TrolliusVictor Stinner2014-12-121-43/+58
| | | | | |\ \
| | | | | | * \ Merge Tulip into TrolliusVictor Stinner2014-12-051-0/+37
| | | | | | |\ \
| | | | | | * \ \ Merge Tulip into TrolliusVictor Stinner2014-08-281-33/+48
| | | | | | |\ \ \
| | | | | | | * \ \ Merge Tulip into TrolliusVictor Stinner2014-07-291-33/+48
| | | | | | | |\ \ \
| | | | | | | | * \ \ Merge Tulip into TrolliusVictor Stinner2014-07-211-33/+48
| | | | | | | | |\ \ \
| | | | | | | | | * | | Fix subprocess on Python 2Victor Stinner2014-07-181-2/+6
| | | | | | | | | * | | Merge Tulip into TrolliusVictor Stinner2014-07-181-11/+35
| | | | | | | | | |\ \ \
| | | | | | | | | * \ \ \ Merge Tulip into TrolliusVictor Stinner2014-06-231-28/+39
| | | | | | | | | |\ \ \ \
| | | | | | | | | | * \ \ \ Merge with TulipVictor Stinner2014-06-181-3/+4
| | | | | | | | | | |\ \ \ \
| | | | | | | | | | * | | | | Replace asyncio with trolliusVictor Stinner2014-05-201-7/+7
| | | | | | | | | | * | | | | tests: Replace asyncio.Return with ReturnVictor Stinner2014-02-261-3/+3
| | | | | | | | | | * | | | | Use "yield From(...)" syntax; set version to 0.2Victor Stinner2014-02-251-8/+9
| | | | | | | | | | * | | | | Merge Tulip into TrolliusVictor Stinner2014-02-201-23/+34
| | | | | | | | | | |\ \ \ \ \
| | | | | | | | | | | * \ \ \ \ Merge with TulipVictor Stinner2014-02-091-16/+0
| | | | | | | | | | | |\ \ \ \ \
| | | | | | | | | | | * | | | | | Fix test_subprocess()Victor Stinner2014-02-091-4/+0
| | | | | | | | | | | * | | | | | Fix compatibility with Python 2.6Victor Stinner2014-02-091-4/+4
| | | | | | | | | | | * | | | | | Merge with TulipVictor Stinner2014-02-091-23/+34
* | | | | | | | | | | | | | | | | Issue #22685: Fix test_pause_reading() of test_subprocessVictor Stinner2015-01-151-2/+12
|/ / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Close transports in testsVictor Stinner2015-01-151-0/+1
* | | | | | | | | | | | | | | | Python issue #23173: Fix SubprocessStreamProtocol.connection_made() to handleVictor Stinner2015-01-141-0/+36
|/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Truncate to 80 columnsVictor Stinner2015-01-091-1/+3
* | | | | | | | | | | | | | | Python issue #23140: Simplify the unit testVictor Stinner2015-01-061-8/+6
* | | | | | | | | | | | | | | Issue #23140: Fix cancellation of Process.wait(). Check the state of the waiterVictor Stinner2015-01-061-0/+28
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | CPython doesn't have asyncio.test_supportVictor Stinner2014-12-261-1/+4
* | | | | | | | | | | | | | Python issue #22926: In debug mode, call_soon(), call_at() and call_later()Victor Stinner2014-12-261-19/+3
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | asyncio.test_support now uses test.support and test.script_helper if availableVictor Stinner2014-12-191-4/+1
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | Copy a subset of test.support from CPython 3.5 to no more depend on the testVictor Stinner2014-12-181-4/+8
|/ / / / / / / / / / /
* | | | | | | | | | | Fix subprocess for close_fds=False on Python 3.3Victor Stinner2014-12-111-0/+21
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Python issue #22685: Fix test_pause_reading() of test_subprocessVictor Stinner2014-12-041-7/+12
* | | | | | | | | | Python issue #22685: Set the transport of stdout and stderr StreamReaderVictor Stinner2014-11-251-0/+32
|/ / / / / / / / /
* | | | | | | | | Don't log expected errors in unit testsVictor Stinner2014-07-301-3/+5
|/ / / / / / / /
* | | | | | | | test_subprocess: relax timings for slow builbotsVictor Stinner2014-07-251-2/+2
|/ / / / / / /
* | | | | | | Fix test_stdin_broken_pipe(): drain() is not a coroutineVictor Stinner2014-07-211-2/+7
| |_|_|_|_|/ |/| | | | |
* | | | | | Python issue 21247: Fix a race condition in test_send_signal() of asyncioVictor Stinner2014-07-171-4/+15
* | | | | | Fix test_stdin_broken_pipe(): drain() can also raise ConnectionResetErrorVictor Stinner2014-07-171-2/+2
* | | | | | asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeErrorVictor Stinner2014-07-171-7/+20
|/ / / / /
* | | | | Enable the debug mode of event loops when the PYTHONASYNCIODEBUG environmentVictor Stinner2014-06-231-2/+2
| |_|_|/ |/| | |
* | | | Refactor tests: add a base TestCase classVictor Stinner2014-06-181-4/+6
|/ / /
* | | pep8-ify the code.Yury Selivanov2014-02-181-2/+10
| |/ |/|
* | Remove Process.subprocess attribute; it's too easy to get inconsistent ProcessVictor Stinner2014-02-091-20/+0
|/
* Replace Process.get_subprocess() method with a Process.subprocess read-only p...Victor Stinner2014-02-031-9/+9