Kaydet (Commit) fd6608bc authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Fix typo (PyChecker)

üst fee3126e
...@@ -25,7 +25,7 @@ class StreamWriter(Codec,codecs.StreamWriter): ...@@ -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'):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment