diff options
| author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 22:27:48 -0500 |
|---|---|---|
| committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 22:27:48 -0500 |
| commit | b0b0e628ee453126efb16805588ef60e2601fd08 (patch) | |
| tree | 1048819ba08c5f0f1db2b96abdcc0e38c16d24db /Lib/test/test_asyncio/test_streams.py | |
| parent | 8abac348a9a6d8f64527f913609789f50251ba58 (diff) | |
| download | cpython-git-b0b0e628ee453126efb16805588ef60e2601fd08.tar.gz | |
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
Diffstat (limited to 'Lib/test/test_asyncio/test_streams.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_streams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 31e26a641a..ca792f20fc 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -239,7 +239,7 @@ class StreamReaderTests(unittest.TestCase): # No b'\n' at the end. The 'limit' is set to 3. So before # waiting for the new data in buffer, 'readline' will consume # the entire buffer, and since the length of the consumed data - # is more than 3, it will raise a ValudError. The buffer is + # is more than 3, it will raise a ValueError. The buffer is # expected to be empty now. self.assertEqual(b'', stream._buffer) |
