[Python-3000-checkins] r61774 - python/branches/py3k/Lib/test/test_io.py

christian.heimes python-3000-checkins at python.org
Sun Mar 23 03:11:13 CET 2008


Author: christian.heimes
Date: Sun Mar 23 03:11:13 2008
New Revision: 61774

Modified:
   python/branches/py3k/Lib/test/test_io.py
Log:
Fixed parent class init

Modified: python/branches/py3k/Lib/test/test_io.py
==============================================================================
--- python/branches/py3k/Lib/test/test_io.py	(original)
+++ python/branches/py3k/Lib/test/test_io.py	Sun Mar 23 03:11:13 2008
@@ -517,7 +517,7 @@
     """
 
     def __init__(self, errors='strict'):
-        codecs.IncrementalEncoder.__init__(self, errors)
+        codecs.IncrementalDecoder.__init__(self, errors)
         self.reset()
 
     def __repr__(self):


More information about the Python-3000-checkins mailing list