From fc7e72d1c6f9977d027dcea827707f8cbd5fa4bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Mon, 19 Nov 2007 12:14:05 +0000 Subject: [PATCH] Fix typo in comment. --- Lib/test/test_codecs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 7c5eb5707fd..95dd432b403 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -26,7 +26,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()