summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_futures.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)
commitb0b0e628ee453126efb16805588ef60e2601fd08 (patch)
tree1048819ba08c5f0f1db2b96abdcc0e38c16d24db /Lib/test/test_asyncio/test_futures.py
parent8abac348a9a6d8f64527f913609789f50251ba58 (diff)
downloadcpython-b0b0e628ee453126efb16805588ef60e2601fd08.zip
cpython-b0b0e628ee453126efb16805588ef60e2601fd08.tar.gz
cpython-b0b0e628ee453126efb16805588ef60e2601fd08.tar.bz2
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
Diffstat (limited to 'Lib/test/test_asyncio/test_futures.py')
-rw-r--r--Lib/test/test_asyncio/test_futures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_futures.py b/Lib/test/test_asyncio/test_futures.py
index 2e4dbd4..f2b81dd 100644
--- a/Lib/test/test_asyncio/test_futures.py
+++ b/Lib/test/test_asyncio/test_futures.py
@@ -38,7 +38,7 @@ class FutureTests(unittest.TestCase):
asyncio.set_event_loop(None)
def test_constructor_positional(self):
- # Make sure Future does't accept a positional argument
+ # Make sure Future doesn't accept a positional argument
self.assertRaises(TypeError, asyncio.Future, 42)
def test_cancel(self):