diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-06-22 22:14:45 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-06-22 22:14:45 (GMT) |
| commit | d42b49256fa02397e606410cdf17f450dbf0f206 (patch) | |
| tree | ed78a4f16e381b975aa51d9e6d3b30578111cbdb /Lib/test/test_asyncio/test_subprocess.py | |
| parent | 33d2e40d887967968897eda3d8b7a0c98853bf3d (diff) | |
| parent | 7b7120e159e2cb951b01773a164426c9e0bffa2d (diff) | |
| download | cpython-d42b49256fa02397e606410cdf17f450dbf0f206.zip cpython-d42b49256fa02397e606410cdf17f450dbf0f206.tar.gz cpython-d42b49256fa02397e606410cdf17f450dbf0f206.tar.bz2 | |
(Merge 3.4) asyncio: Enable the debug mode of event loops when the
PYTHONASYNCIODEBUG environment variable is set
Diffstat (limited to 'Lib/test/test_asyncio/test_subprocess.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_subprocess.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index 3b962bf..3204d42 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -141,7 +141,7 @@ if sys.platform != 'win32': policy = asyncio.get_event_loop_policy() self.loop = policy.new_event_loop() - # ensure that the event loop is passed explicitly in the code + # ensure that the event loop is passed explicitly in asyncio policy.set_event_loop(None) watcher = self.Watcher() @@ -172,7 +172,7 @@ else: policy = asyncio.get_event_loop_policy() self.loop = asyncio.ProactorEventLoop() - # ensure that the event loop is passed explicitly in the code + # ensure that the event loop is passed explicitly in asyncio policy.set_event_loop(None) def tearDown(self): |
