diff options
author | Walter Dörwald <walter@livinglogic.de> | 2007-11-19 12:23:44 +0000 |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2007-11-19 12:23:44 +0000 |
commit | ad91c78698adc08066c8b1f49380d3bf0d82f89e (patch) | |
tree | 3acf763d4e9bd862a2dd107c1d9bceb94aefbf70 | |
parent | e15fab42988c6fa518ca6778cf4049d8e42ba977 (diff) | |
download | cpython-git-ad91c78698adc08066c8b1f49380d3bf0d82f89e.tar.gz |
Backport r59047: Fix typo in comment.
-rw-r--r-- | Lib/test/test_codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 6d6e37897d..aacf19f773 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -27,7 +27,7 @@ class Queue(object): class ReadTest(unittest.TestCase): def check_partial(self, input, partialresults): # get a StreamReader for the encoding and feed the bytestring version - # of input to the reader byte by byte. Read every available from + # of input to the reader byte by byte. Read everything available from # the StreamReader and check that the results equal the appropriate # entries from partialresults. q = Queue() |