diff options
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 d340725d7b..909a651b5f 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -589,7 +589,7 @@ class StreamReader(Codec): """ self.bytebuffer = "" - self.charbuffer = u"" + self.charbuffer = "" self.linebuffer = None def seek(self, offset, whence=0): |