asyncio: Fix spelling and typos.

Thanks to Vajrasky Kok for discovering some of them.
This commit is contained in:
Yury Selivanov 2014-02-18 22:27:48 -05:00
parent 8abac348a9
commit b0b0e628ee
13 changed files with 18 additions and 19 deletions

View file

@ -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)