summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2004-06-06 01:29:22 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2004-06-06 01:29:22 (GMT)
commit4d5bc6031ca883201f87e0e3c94e5746f9f91439 (patch)
treebebdc12778178ff31a076a6e6709e705531fc7c7 /Lib/idlelib/PyShell.py
parentcfa157d808d387551e3973c6e4e8e5eebca3b051 (diff)
downloadcpython-4d5bc6031ca883201f87e0e3c94e5746f9f91439.zip
cpython-4d5bc6031ca883201f87e0e3c94e5746f9f91439.tar.gz
cpython-4d5bc6031ca883201f87e0e3c94e5746f9f91439.tar.bz2
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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index 028e3ee..951fde2 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