summaryrefslogtreecommitdiffstats
path: root/Tools/idle/PyShell.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-05-21 17:00:20 (GMT)
committerRaymond Hettinger <python@rcn.com>2002-05-21 17:00:20 (GMT)
commit7f7d5bf43873b13c21cff8ab452df3ebde3a39ce (patch)
tree96808a1a4f8f180ec5592b20903386930ca88506 /Tools/idle/PyShell.py
parentf79f2f94d5f7e13e0d409d5c00f752280fd3d628 (diff)
downloadcpython-7f7d5bf43873b13c21cff8ab452df3ebde3a39ce.zip
cpython-7f7d5bf43873b13c21cff8ab452df3ebde3a39ce.tar.gz
cpython-7f7d5bf43873b13c21cff8ab452df3ebde3a39ce.tar.bz2
Patch 543222. Disable script bindings in shell window.
Diffstat (limited to 'Tools/idle/PyShell.py')
-rw-r--r--Tools/idle/PyShell.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/idle/PyShell.py b/Tools/idle/PyShell.py
index 2c471de..cf854d3 100644
--- a/Tools/idle/PyShell.py
+++ b/Tools/idle/PyShell.py
@@ -76,6 +76,7 @@ class PyShellEditorWindow(EditorWindow):
# Regular text edit window when a shell is present
# XXX ought to merge with regular editor window
+ runnable = True # Shell not present, enable Import Module and Run Script
def __init__(self, *args):
apply(EditorWindow.__init__, (self,) + args)