summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-19 03:27:48 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-02-19 03:27:48 (GMT)
commitdec1a45fd1b37d4688fa5846a0d32a2393808fb1 (patch)
treec0affa11a1d58436f2b109e2330bf104ae000afd /Lib/test/test_asyncio/test_events.py
parent74d519fcc685f903a9127987ae53ff75eaf17d73 (diff)
downloadcpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.zip
cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.gz
cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.bz2
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r--Lib/test/test_asyncio/test_events.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index 15cc520..a0a4d02 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -503,7 +503,6 @@ class EventLoopTestsMixin:
tr, pr = self.loop.run_until_complete(connection_fut)
self.assertIsInstance(tr, asyncio.Transport)
self.assertIsInstance(pr, asyncio.Protocol)
- self.assertIsNotNone(tr.get_extra_info('sockname'))
self.loop.run_until_complete(pr.done)
self.assertGreater(pr.nbytes, 0)
tr.close()