summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-29 23:11:55 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-01-29 23:11:55 (GMT)
commit698a9bd3ba2a01664000668433254ddbb7b52c3f (patch)
tree1100837bbc8d5359c74005caa34d225a710756b7 /Lib
parenta9373ec96657982c1c1673f6817f81d4a7aec833 (diff)
parent0698638d797ca864f069d828dd2ea6d55b87a04e (diff)
downloadcpython-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.py2
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: