From: Walter Dörwald Date: Mon, 19 Nov 2007 12:23:44 +0000 (+0000) Subject: Backport r59047: Fix typo in comment. X-Git-Tag: v2.5.2c1~130 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad91c78698adc08066c8b1f49380d3bf0d82f89e;p=python Backport r59047: Fix typo in comment. --- 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()