diff options
author | Guido van Rossum <guido@python.org> | 2015-10-03 08:31:42 -0700 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-10-03 08:31:42 -0700 |
commit | 841d9ee41a8ad0a8a372f9b84f0fa40b07bcc66b (patch) | |
tree | b1d15de84428011b0e5865425e096d1dfe37d8e9 /Lib/test/test_asyncio/test_futures.py | |
parent | 3795d12a0d6f2be8d0a062c3ba878fc4800e2db1 (diff) | |
download | cpython-841d9ee41a8ad0a8a372f9b84f0fa40b07bcc66b.tar.gz cpython-841d9ee41a8ad0a8a372f9b84f0fa40b07bcc66b.zip |
Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.
Diffstat (limited to 'Lib/test/test_asyncio/test_futures.py')
-rw-r--r-- | Lib/test/test_asyncio/test_futures.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_futures.py b/Lib/test/test_asyncio/test_futures.py index c8b6829fb67..0bc0581d281 100644 --- a/Lib/test/test_asyncio/test_futures.py +++ b/Lib/test/test_asyncio/test_futures.py @@ -174,8 +174,6 @@ class FutureTests(test_utils.TestCase): '<Future cancelled>') def test_copy_state(self): - # Test the internal _copy_state method since it's being directly - # invoked in other modules. f = asyncio.Future(loop=self.loop) f.set_result(10) |