diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2007-08-31 21:40:34 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2007-08-31 21:40:34 (GMT) |
commit | d953f6e2c70a16489782c78ebd5b55a28fc1e350 (patch) | |
tree | 1e3a67a315792c0e3e7272a7c7942d4e760871c6 /Lib/idlelib | |
parent | 9cd1e09deba4433fd2a2523807a68adf2e9030a7 (diff) | |
download | cpython-d953f6e2c70a16489782c78ebd5b55a28fc1e350.zip cpython-d953f6e2c70a16489782c78ebd5b55a28fc1e350.tar.gz cpython-d953f6e2c70a16489782c78ebd5b55a28fc1e350.tar.bz2 |
Point IDLE menu Help / Python Docs at Python 3000 version
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 7161069..82da730 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -82,7 +82,7 @@ class EditorWindow(object): # Safari requires real file:-URLs EditorWindow.help_url = 'file://' + EditorWindow.help_url else: - EditorWindow.help_url = "http://www.python.org/doc/current" + EditorWindow.help_url = "http://docs.python.org/dev/3.0/" currentTheme=idleConf.CurrentTheme() self.flist = flist root = root or flist.root |