[Python-checkins] cpython (3.3): Issue16097 Fix small typo in comment (patch by Wael Al Jishi)

tim.golden python-checkins at python.org
Mon Oct 1 17:42:48 CEST 2012


http://hg.python.org/cpython/rev/bb77400af434
changeset:   79363:bb77400af434
branch:      3.3
user:        Tim Golden <mail at timgolden.me.uk>
date:        Mon Oct 01 16:40:40 2012 +0100
summary:
  Issue16097 Fix small typo in comment (patch by Wael Al Jishi)

files:
  Lib/codecs.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/codecs.py b/Lib/codecs.py
--- a/Lib/codecs.py
+++ b/Lib/codecs.py
@@ -461,7 +461,7 @@
 
         # 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:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list