diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2004-06-06 01:29:22 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2004-06-06 01:29:22 +0000 |
commit | 4d5bc6031ca883201f87e0e3c94e5746f9f91439 (patch) | |
tree | bebdc12778178ff31a076a6e6709e705531fc7c7 /Lib/idlelib/PyShell.py | |
parent | cfa157d808d387551e3973c6e4e8e5eebca3b051 (diff) | |
download | cpython-git-4d5bc6031ca883201f87e0e3c94e5746f9f91439.tar.gz |
Noam Raphel: Further developemt of CodeContext feature.
The visibility state of the code context pane is now persistent between
sessions and the pane does not appear in the shell window.
M CodeContext.py
M EditorWindow.py
M NEWS.txt
M PyShell.py
M config-extensions.def
M configHandler.py
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rw-r--r-- | Lib/idlelib/PyShell.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 028e3ee0ea..951fde217d 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -806,6 +806,9 @@ class PyShell(OutputWindow): # self.pollinterval = 50 # millisec + def get_standard_extension_names(self): + return idleConf.GetExtensions(shell_only=True) + reading = False executing = False canceled = False |