summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-11-03 22:10:11 (GMT)
committerYury Selivanov <yury@magic.io>2016-11-03 22:10:11 (GMT)
commita6fbcd19ac3e821f53159d06d643de65c70c1050 (patch)
tree28b50212ab2cffb284283decd633106da17809f7 /Lib/test/test_asyncio/test_events.py
parent4948a462e82fce85e94e12bf47b7a14aef2dc466 (diff)
parent491a912659a4aeb57c400f37b8059fa1ef7bed73 (diff)
downloadcpython-a6fbcd19ac3e821f53159d06d643de65c70c1050.zip
cpython-a6fbcd19ac3e821f53159d06d643de65c70c1050.tar.gz
cpython-a6fbcd19ac3e821f53159d06d643de65c70c1050.tar.bz2
Merge 3.5 (issue #28600)
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r--Lib/test/test_asyncio/test_events.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index 7df926f..d8946e3 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -2249,13 +2249,6 @@ class HandleTests(test_utils.TestCase):
h.cancel()
self.assertTrue(h._cancelled)
- def test_handle_from_handle(self):
- def callback(*args):
- return args
- h1 = asyncio.Handle(callback, (), loop=self.loop)
- self.assertRaises(
- AssertionError, asyncio.Handle, h1, (), self.loop)
-
def test_callback_with_exception(self):
def callback():
raise ValueError()