More PEP 8: no space around "=" in argument lists.

This commit is contained in:
Georg Brandl 2011-01-13 07:13:06 +00:00
parent 547d4859b9
commit 4d73b570eb
1 changed files with 10 additions and 11 deletions

View File

@ -34,8 +34,7 @@ class BlockingIOError(IOError):
self.characters_written = characters_written
def open(file, mode = "r", buffering = -1,
encoding = None, errors = None,
def open(file, mode="r", buffering=-1, encoding=None, errors=None,
newline=None, closefd=True):
r"""Open file and return a stream. Raise IOError upon failure.