From fd1fcffced95f254136ca9e715d210fe7c8dd5b1 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 17 Sep 2009 03:18:28 +0000 Subject: [PATCH] pep 8 defaults --- Doc/library/termios.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/termios.rst b/Doc/library/termios.rst index 4847949a49..2b1be7be6f 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) -- 2.50.1