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 | e6ecea53c8394b5101bb3ddab3216a948065ef97 (patch) | |
tree | 225a711992ec59273d9a1f6d75b8a19c64959137 /Lib/test/test_asyncio/test_selector_events.py | |
parent | af320b389bba5221870553e70eaefee3bdf860e5 (diff) | |
download | cpython-e6ecea53c8394b5101bb3ddab3216a948065ef97.tar.gz cpython-e6ecea53c8394b5101bb3ddab3216a948065ef97.zip |
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_selector_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_selector_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_selector_events.py b/Lib/test/test_asyncio/test_selector_events.py index 9478b954835..f0fcdd22ae6 100644 --- a/Lib/test/test_asyncio/test_selector_events.py +++ b/Lib/test/test_asyncio/test_selector_events.py @@ -348,7 +348,7 @@ class BaseSelectorEventLoopTests(test_utils.TestCase): self.loop._sock_connect.call_args[0]) def test_sock_connect_timeout(self): - # Tulip issue #205: sock_connect() must unregister the socket on + # asyncio issue #205: sock_connect() must unregister the socket on # timeout error # prepare mocks |