summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/EditorWindow.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2006-07-24 17:13:23 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2006-07-24 17:13:23 (GMT)
commitb3c4d16e688d073dae92f272d66b6efa4b70a734 (patch)
tree5cd1236555b3c8831882b6221dd6700d99a46eae /Lib/idlelib/EditorWindow.py
parentc13c34c39d0a39b3f3bfe1d2145861dbdc19dd68 (diff)
downloadcpython-b3c4d16e688d073dae92f272d66b6efa4b70a734.zip
cpython-b3c4d16e688d073dae92f272d66b6efa4b70a734.tar.gz
cpython-b3c4d16e688d073dae92f272d66b6efa4b70a734.tar.bz2
EditorWindow failed when used stand-alone if sys.ps1 not set.
Bug 1010370 Dave Florek M EditorWindow.py M PyShell.py M NEWS.txt
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r--Lib/idlelib/EditorWindow.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py
index 442d718..397d12e 100644
--- a/Lib/idlelib/EditorWindow.py
+++ b/Lib/idlelib/EditorWindow.py
@@ -85,6 +85,10 @@ class EditorWindow(object):
self.flist = flist
root = root or flist.root
self.root = root
+ try:
+ sys.ps1
+ except AttributeError:
+ sys.ps1 = '>>> '
self.menubar = Menu(root)
self.top = top = WindowList.ListedToplevel(root, menu=self.menubar)
if flist: