summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-02 19:09:54 +0000
committerGuido van Rossum <guido@python.org>2007-05-02 19:09:54 +0000
commitb073f81ebad8246da83b7c7aef0031e86ad228ef (patch)
tree65721adc3d7eb83905fae992a9252af31bb0b702 /Lib/codecs.py
parented9f1907286ed2cb9109ccb72f318ea249e6c295 (diff)
downloadcpython-b073f81ebad8246da83b7c7aef0031e86ad228ef.tar.gz
Rip out all the u"..." literals and calls to unicode().
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py2
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):