diff options
author | Raymond Hettinger <python@rcn.com> | 2002-05-21 17:00:20 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-05-21 17:00:20 +0000 |
commit | 7f7d5bf43873b13c21cff8ab452df3ebde3a39ce (patch) | |
tree | 96808a1a4f8f180ec5592b20903386930ca88506 /Tools/idle/ScriptBinding.py | |
parent | f79f2f94d5f7e13e0d409d5c00f752280fd3d628 (diff) | |
download | cpython-git-7f7d5bf43873b13c21cff8ab452df3ebde3a39ce.tar.gz |
Patch 543222. Disable script bindings in shell window.
Diffstat (limited to 'Tools/idle/ScriptBinding.py')
-rw-r--r-- | Tools/idle/ScriptBinding.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/idle/ScriptBinding.py b/Tools/idle/ScriptBinding.py index 4071681b7f..19a20b259d 100644 --- a/Tools/idle/ScriptBinding.py +++ b/Tools/idle/ScriptBinding.py @@ -51,6 +51,9 @@ class ScriptBinding: ] def __init__(self, editwin): + if not editwin.runnable: + self.menudefs = [] + self.keydefs = {} self.editwin = editwin # Provide instance variables referenced by Debugger # XXX This should be done differently |