summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-11-19 12:23:44 +0000
committerWalter Dörwald <walter@livinglogic.de>2007-11-19 12:23:44 +0000
commitad91c78698adc08066c8b1f49380d3bf0d82f89e (patch)
tree3acf763d4e9bd862a2dd107c1d9bceb94aefbf70
parente15fab42988c6fa518ca6778cf4049d8e42ba977 (diff)
downloadcpython-git-ad91c78698adc08066c8b1f49380d3bf0d82f89e.tar.gz
Backport r59047: Fix typo in comment.
-rw-r--r--Lib/test/test_codecs.py2
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()