[Python-checkins] r59048 - python/branches/release25-maint/Lib/test/test_codecs.py

walter.doerwald python-checkins at python.org
Mon Nov 19 13:23:44 CET 2007


Author: walter.doerwald
Date: Mon Nov 19 13:23:44 2007
New Revision: 59048

Modified:
   python/branches/release25-maint/Lib/test/test_codecs.py
Log:
Backport r59047: Fix typo in comment.


Modified: python/branches/release25-maint/Lib/test/test_codecs.py
==============================================================================
--- python/branches/release25-maint/Lib/test/test_codecs.py	(original)
+++ python/branches/release25-maint/Lib/test/test_codecs.py	Mon Nov 19 13:23:44 2007
@@ -27,7 +27,7 @@
 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()


More information about the Python-checkins mailing list