mirror of https://github.com/python/cpython
Fix typo (PyChecker)
This commit is contained in:
parent
fee3126eb3
commit
fd6608bcea
|
@ -25,7 +25,7 @@ class StreamWriter(Codec,codecs.StreamWriter):
|
||||||
|
|
||||||
def __init__(self,stream,errors='strict',mapping=None):
|
def __init__(self,stream,errors='strict',mapping=None):
|
||||||
|
|
||||||
codecs.StreamWriter.__init__(self,strict,errors)
|
codecs.StreamWriter.__init__(self,stream,errors)
|
||||||
self.mapping = mapping
|
self.mapping = mapping
|
||||||
|
|
||||||
def encode(self,input,errors='strict'):
|
def encode(self,input,errors='strict'):
|
||||||
|
|
Loading…
Reference in New Issue