Showing content from http://svn.python.org/projects/python/branches/py-cvs-vendor-branch/Lib/idlelib/Bindings.py below:
# This file defines the menu contents and key bindings. Note that # there is additional configuration information in the EditorWindow # class (and subclasses): the menus are created there based on the # menu_specs (class) variable, and menus not created are silently # skipped by the code here. This makes it possible to define the # Debug menu here, which is only present in the PythonShell window. import sys from keydefs import * menudefs = [ # underscore prefixes character to underscore ('file', [ ('_New window', '< >'), ('_Open...', '< >'), ('Open _module...', '< >'), ('Class _browser', '< >'), ('_Path browser', '< >'), ('Python shell', '< >'), None, ('_Save', '< >'), ('Save _As...', '< >'), ('Save Co_py As...', '< >'), None, ('_Print window', '< >'), None, ('_Close', '< >'), ('E_xit', '< >'), ]), ('edit', [ ('_Undo', '< >'), ('_Redo', '< >'), None, ('Cu_t', '< >'), ('_Copy', '< >'), ('_Paste', '< >'), ('Select _All', '< >'), ]), ('debug', [ ('_Go to file/line', '< >'), ('_Stack viewer', '< >'), ('!_Debugger', '< >'), ('!_Auto-open stack viewer', '< >' ), ]), ('help', [ ('_Help...', '< >'), ('Python _Documentation...', '< >'), None, ('_About IDLE...', '< >'), ]), ] if sys.platform == 'win32': default_keydefs = windows_keydefs else: default_keydefs = unix_keydefs del sys
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4