From ab568878ff4a4278edb1f048049594eb0a76dfd4 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sun, 23 Mar 2008 02:11:13 +0000 Subject: Fixed parent class init --- Lib/test/test_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 38af35a..513e1f3 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -517,7 +517,7 @@ class StatefulIncrementalDecoder(codecs.IncrementalDecoder): """ def __init__(self, errors='strict'): - codecs.IncrementalEncoder.__init__(self, errors) + codecs.IncrementalDecoder.__init__(self, errors) self.reset() def __repr__(self): -- cgit v0.12