aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_asyncio/test_futures.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-18 22:27:48 -0500
committerYury Selivanov <yselivanov@sprymix.com>2014-02-18 22:27:48 -0500
commitdec1a45fd1b37d4688fa5846a0d32a2393808fb1 (patch)
treec0affa11a1d58436f2b109e2330bf104ae000afd /Lib/test/test_asyncio/test_futures.py
parent74d519fcc685f903a9127987ae53ff75eaf17d73 (diff)
downloadcpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.gz
cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.zip
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 2e4dbd4a684..f2b81ddd987 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):