From: Benjamin Peterson Date: Thu, 17 Sep 2009 03:18:28 +0000 (+0000) Subject: pep 8 defaults X-Git-Tag: v2.7a1~520 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd1fcffced95f254136ca9e715d210fe7c8dd5b1;p=thirdparty%2FPython%2Fcpython.git pep 8 defaults --- diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst index 4847949a49b5..2b1be7be6f74 100644 --- a/Doc/library/termios.rst +++ b/Doc/library/termios.rst @@ -90,7 +90,7 @@ technique using a separate :func:`tcgetattr` call and a :keyword:`try` ... :keyword:`finally` statement to ensure that the old tty attributes are restored exactly no matter what happens:: - def getpass(prompt = "Password: "): + def getpass(prompt="Password: "): import termios, sys fd = sys.stdin.fileno() old = termios.tcgetattr(fd)