summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_subprocess.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-07-09 21:13:50 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-07-09 21:13:50 (GMT)
commite6ecea53c8394b5101bb3ddab3216a948065ef97 (patch)
tree225a711992ec59273d9a1f6d75b8a19c64959137 /Lib/test/test_asyncio/test_subprocess.py
parentaf320b389bba5221870553e70eaefee3bdf860e5 (diff)
downloadcpython-e6ecea53c8394b5101bb3ddab3216a948065ef97.zip
cpython-e6ecea53c8394b5101bb3ddab3216a948065ef97.tar.gz
cpython-e6ecea53c8394b5101bb3ddab3216a948065ef97.tar.bz2
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.py2
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 5ccdafb..ea85e19 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):