summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_subprocess.py
diff options
context:
space:
mode:
authorBrett Cannon <brettcannon@users.noreply.github.com>2018-06-02 03:34:09 (GMT)
committerGitHub <noreply@github.com>2018-06-02 03:34:09 (GMT)
commit8425de4147eb8d83befbb8ea77516fc764bb4309 (patch)
treee07959e28d2c69c12aabd580ecb35e7a968783d3 /Lib/test/test_asyncio/test_subprocess.py
parentde6516264e793be991f692fdd892707afb9104a7 (diff)
downloadcpython-8425de4147eb8d83befbb8ea77516fc764bb4309.zip
cpython-8425de4147eb8d83befbb8ea77516fc764bb4309.tar.gz
cpython-8425de4147eb8d83befbb8ea77516fc764bb4309.tar.bz2
bpo-33562: Check the global asyncio event loop policy isn't set after any tests (GH-7328)
Diffstat (limited to 'Lib/test/test_asyncio/test_subprocess.py')
-rw-r--r--Lib/test/test_asyncio/test_subprocess.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py
index 235813a..2be311d 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -23,6 +23,11 @@ PROGRAM_CAT = [
'data = sys.stdin.buffer.read()',
'sys.stdout.buffer.write(data)'))]
+
+def tearDownModule():
+ asyncio.set_event_loop_policy(None)
+
+
class TestSubprocessTransport(base_subprocess.BaseSubprocessTransport):
def _start(self, *args, **kwargs):
self._proc = mock.Mock()