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

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


http://hg.python.org/cpython/rev/cbf651ab3e21
changeset:   79364:cbf651ab3e21
parent:      79361:3f739f42be51
user:        Tim Golden <mail at timgolden.me.uk>
date:        Mon Oct 01 16:41:08 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