Make the docstring for io.open() a raw string so that the explanation for the

'newline' argument is not a jumbled mess of newlines.
This commit is contained in:
Brett Cannon 2007-10-15 20:52:41 +00:00
parent e20ad358fd
commit 7648ba83f2
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class BlockingIOError(IOError):
def open(file, mode="r", buffering=None, encoding=None, newline=None):
"""Replacement for the built-in open function.
r"""Replacement for the built-in open function.
Args:
file: string giving the name of the file to be opened;