diff options
Diffstat (limited to 'Lib/test/test_io.py')
-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): |