commit | fd1fcffced95f254136ca9e715d210fe7c8dd5b1 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Sep 17 03:18:28 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Sep 17 03:18:28 2009 +0000 |
tree | f035a2ac884385b53c5aac19348a16ddff4bc2a6 | |
parent | 4d714cbbf1fff1711a60bd6d256bbf0e12491e09 [diff] |
pep 8 defaults
diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst index 4847949..2b1be7b 100644 --- a/Doc/library/termios.rst +++ b/Doc/library/termios.rst
@@ -90,7 +90,7 @@ :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)