summaryrefslogtreecommitdiff
path: root/tests/test_subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merge (manually) the subprocess_stream into defaultVictor Stinner2014-02-011-0/+196