diff options
author | 2007-05-02 19:09:54 +0000 | |
---|---|---|
committer | 2007-05-02 19:09:54 +0000 | |
commit | ef87d6ed94780fe00250a551031023aeb2898365 (patch) | |
tree | 1f8989aaaec7ec5f8b2f26498317f2022bf85531 /Lib/codecs.py | |
parent | Checkpoint. Manipulated things so that string literals are always (diff) | |
download | cpython-ef87d6ed94780fe00250a551031023aeb2898365.tar.gz cpython-ef87d6ed94780fe00250a551031023aeb2898365.tar.bz2 cpython-ef87d6ed94780fe00250a551031023aeb2898365.zip |
Rip out all the u"..." literals and calls to unicode().
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 d340725d7b6..909a651b5fd 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): |