diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-29 23:11:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-29 23:11:55 (GMT) |
commit | 698a9bd3ba2a01664000668433254ddbb7b52c3f (patch) | |
tree | 1100837bbc8d5359c74005caa34d225a710756b7 /Lib | |
parent | a9373ec96657982c1c1673f6817f81d4a7aec833 (diff) | |
parent | 0698638d797ca864f069d828dd2ea6d55b87a04e (diff) | |
download | cpython-698a9bd3ba2a01664000668433254ddbb7b52c3f.zip cpython-698a9bd3ba2a01664000668433254ddbb7b52c3f.tar.gz cpython-698a9bd3ba2a01664000668433254ddbb7b52c3f.tar.bz2 |
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_asyncio/test_subprocess.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index 4f197f3..d4b71b7 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -87,6 +87,8 @@ class SubprocessTransportTests(test_utils.TestCase): self.assertRaises(ProcessLookupError, transport.terminate) self.assertRaises(ProcessLookupError, transport.kill) + transport.close() + class SubprocessMixin: |