mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fix typo (PyChecker)
This commit is contained in:
parent
fee3126eb3
commit
fd6608bcea
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class StreamWriter(Codec,codecs.StreamWriter):
|
|||
|
||||
def __init__(self,stream,errors='strict',mapping=None):
|
||||
|
||||
codecs.StreamWriter.__init__(self,strict,errors)
|
||||
codecs.StreamWriter.__init__(self,stream,errors)
|
||||
self.mapping = mapping
|
||||
|
||||
def encode(self,input,errors='strict'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue