summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-09 11:16:26 -0400
committerBenjamin Peterson <benjamin@python.org>2012-10-09 11:16:26 -0400
commit455fa0a314b7f7edd0c8554b12a65267ff1e2e5b (patch)
treea4db0395d8674c1e3c4119f0edccf72307b34e49 /Lib/codecs.py
parentb29614e047110f4d9af993a6cdec4e3fb7ef9738 (diff)
parent831893a68ec7114c1fc9c8e36b9159f5c1db50c7 (diff)
downloadcpython-git-455fa0a314b7f7edd0c8554b12a65267ff1e2e5b.tar.gz
merge heads
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py
index 9901d5c662..48d4c9c739 100644
--- a/Lib/codecs.py
+++ b/Lib/codecs.py
@@ -461,7 +461,7 @@ class StreamReader(Codec):
# read until we get the required number of characters (if available)
while True:
- # can the request can be satisfied from the character buffer?
+ # can the request be satisfied from the character buffer?
if chars < 0:
if size < 0:
if self.charbuffer: