diff options
author | Christian Heimes <christian@cheimes.de> | 2008-03-23 02:11:13 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-03-23 02:11:13 (GMT) |
commit | ab568878ff4a4278edb1f048049594eb0a76dfd4 (patch) | |
tree | 717634eb75b939c91b7d0c40451678e6d51da82f | |
parent | 84f4dfd3f68d7a5501ad407fc11502f2b8b20f09 (diff) | |
download | cpython-ab568878ff4a4278edb1f048049594eb0a76dfd4.zip cpython-ab568878ff4a4278edb1f048049594eb0a76dfd4.tar.gz cpython-ab568878ff4a4278edb1f048049594eb0a76dfd4.tar.bz2 |
Fixed parent class init
-rw-r--r-- | Lib/test/test_io.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |