diff options
author | Tim Golden <mail@timgolden.me.uk> | 2012-10-01 15:41:08 (GMT) |
---|---|---|
committer | Tim Golden <mail@timgolden.me.uk> | 2012-10-01 15:41:08 (GMT) |
commit | 8a9f93699f9e050e22d22006df0d4821beec641f (patch) | |
tree | 4dea4ff82f04559fb561d7d10ea3440ca2df4b0c /Lib/codecs.py | |
parent | f1d2345842a86f6068a0a122843ed3562a8e3c27 (diff) | |
download | cpython-8a9f93699f9e050e22d22006df0d4821beec641f.zip cpython-8a9f93699f9e050e22d22006df0d4821beec641f.tar.gz cpython-8a9f93699f9e050e22d22006df0d4821beec641f.tar.bz2 |
Issue16097 Fix small typo in comment (patch by Wael Al Jishi)
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r-- | Lib/codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index 9901d5c..48d4c9c 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: |