mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Fixed parent class init
This commit is contained in:
parent
84f4dfd3f6
commit
ab568878ff
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue