summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/macosxSupport.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-09-20 23:57:37 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-09-20 23:57:37 (GMT)
commit47f9741e5cc08a5f4e2d24fb62388afa18b30a8c (patch)
tree6f4e28d96c3dc9db427e3bc3405e829e57643546 /Lib/idlelib/macosxSupport.py
parentfc2fb0f62197ada0dec658dbd3ae44fcd7fcb938 (diff)
parent5d46ab1274232d51060ba2e45e6c345ef4e5b970 (diff)
downloadcpython-47f9741e5cc08a5f4e2d24fb62388afa18b30a8c.zip
cpython-47f9741e5cc08a5f4e2d24fb62388afa18b30a8c.tar.gz
cpython-47f9741e5cc08a5f4e2d24fb62388afa18b30a8c.tar.bz2
Merge with 3.4
Diffstat (limited to 'Lib/idlelib/macosxSupport.py')
-rw-r--r--Lib/idlelib/macosxSupport.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/idlelib/macosxSupport.py b/Lib/idlelib/macosxSupport.py
index 77330cf..1030afe 100644
--- a/Lib/idlelib/macosxSupport.py
+++ b/Lib/idlelib/macosxSupport.py
@@ -174,9 +174,8 @@ def overrideRootMenu(root, flist):
configDialog.ConfigDialog(root, 'Settings')
def help_dialog(event=None):
- from idlelib import textView
- fn = path.join(path.abspath(path.dirname(__file__)), 'help.txt')
- textView.view_file(root, 'Help', fn)
+ from idlelib import help
+ help.show_idlehelp(root)
root.bind('<<about-idle>>', about_dialog)
root.bind('<<open-config-dialog>>', config_dialog)