[Python-checkins] r45394 - python/trunk/Lib/codecs.py

walter.doerwald python-checkins at python.org
Fri Apr 14 17:40:55 CEST 2006


Author: walter.doerwald
Date: Fri Apr 14 17:40:54 2006
New Revision: 45394

Modified:
   python/trunk/Lib/codecs.py
Log:
Fix wrong attribute name.


Modified: python/trunk/Lib/codecs.py
==============================================================================
--- python/trunk/Lib/codecs.py	(original)
+++ python/trunk/Lib/codecs.py	Fri Apr 14 17:40:54 2006
@@ -233,7 +233,7 @@
 
     def reset(self):
         IncrementalDecoder.reset(self)
-        self.bytebuffer = ""
+        self.buffer = ""
 
 #
 # The StreamWriter and StreamReader class provide generic working


More information about the Python-checkins mailing list