Just changed "x,y" to "x, y" everywhere (i.e., inserted horizontal space

after commas that didn't have any).
This commit is contained in:
Tim Peters 2001-05-15 17:19:16 +00:00
parent acfdf156aa
commit 30324a7363
1 changed files with 34 additions and 37 deletions

View File

@ -157,7 +157,6 @@ class StreamWriter(Codec):
pass
def __getattr__(self, name,
getattr=getattr):
""" Inherit all other methods from the underlying stream.
@ -283,7 +282,6 @@ class StreamReader(Codec):
pass
def __getattr__(self, name,
getattr=getattr):
""" Inherit all other methods from the underlying stream.
@ -349,7 +347,6 @@ class StreamReaderWriter:
self.writer.reset()
def __getattr__(self, name,
getattr=getattr):
""" Inherit all other methods from the underlying stream.
@ -379,7 +376,8 @@ class StreamRecoder:
data_encoding = 'unknown'
file_encoding = 'unknown'
def __init__(self,stream,encode,decode,Reader,Writer,errors='strict'):
def __init__(self, stream, encode, decode, Reader, Writer,
errors='strict'):
""" Creates a StreamRecoder instance which implements a two-way
conversion: encode and decode work on the frontend (the
@ -452,7 +450,6 @@ class StreamRecoder:
self.writer.reset()
def __getattr__(self, name,
getattr=getattr):
""" Inherit all other methods from the underlying stream.