summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-11-19 12:14:05 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2007-11-19 12:14:05 (GMT)
commitfc7e72d1c6f9977d027dcea827707f8cbd5fa4bc (patch)
treed7e072a43239ecdd9a36d7aadb97f6e7817e2dcd /Lib/test
parent76e4d628223a0636a2ba632d6be7cb24340cb7c5 (diff)
downloadcpython-fc7e72d1c6f9977d027dcea827707f8cbd5fa4bc.zip
cpython-fc7e72d1c6f9977d027dcea827707f8cbd5fa4bc.tar.gz
cpython-fc7e72d1c6f9977d027dcea827707f8cbd5fa4bc.tar.bz2
Fix typo in comment.
Diffstat (limited to 'Lib/test')
-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 7c5eb57..95dd432 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()