From b3c4d16e688d073dae92f272d66b6efa4b70a734 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Mon, 24 Jul 2006 17:13:23 +0000 Subject: EditorWindow failed when used stand-alone if sys.ps1 not set. Bug 1010370 Dave Florek M EditorWindow.py M PyShell.py M NEWS.txt --- Lib/idlelib/PyShell.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Lib/idlelib/PyShell.py') diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index f7622f14f9..227372ef2a 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -1305,10 +1305,6 @@ def main(): cmd = None script = None startup = False - try: - sys.ps1 - except AttributeError: - sys.ps1 = '>>> ' try: opts, args = getopt.getopt(sys.argv[1:], "c:deihnr:st:") except getopt.error, msg: -- cgit v1.2.1