From 8a9f93699f9e050e22d22006df0d4821beec641f Mon Sep 17 00:00:00 2001 From: Tim Golden Date: Mon, 1 Oct 2012 16:41:08 +0100 Subject: Issue16097 Fix small typo in comment (patch by Wael Al Jishi) --- Lib/codecs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v0.12