diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-07-09 23:13:50 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-07-09 23:13:50 +0200 |
commit | 595e2d3016e5524bce2ffc464221ba3c79299f12 (patch) | |
tree | 090e7a3db361b43e48c07836c7e28be6d0a51c37 /Lib/test/test_asyncio/test_subprocess.py | |
parent | 6a889d878d2c0a88bd10661c72fe6efadf4f3b09 (diff) | |
download | cpython-595e2d3016e5524bce2ffc464221ba3c79299f12.tar.gz |
asyncio: sync with github asyncio
* queues: get coroutine from asyncio.coroutines, not from asyncio.tasks
* tets: replace tulip with asyncio in comments
Diffstat (limited to 'Lib/test/test_asyncio/test_subprocess.py')
-rw-r--r-- | Lib/test/test_asyncio/test_subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index 5ccdafb151..ea85e1912e 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -266,7 +266,7 @@ class SubprocessMixin: self.assertTrue(transport.resume_reading.called) def test_stdin_not_inheritable(self): - # Tulip issue #209: stdin must not be inheritable, otherwise + # asyncio issue #209: stdin must not be inheritable, otherwise # the Process.communicate() hangs @asyncio.coroutine def len_message(message): |