⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.60
Server IP:
68.65.123.197
Server:
Linux premium49.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib64
/
python2.7
/
idlelib
/
Edit File: Bindings.py
"""Define the menu contents, hotkeys, and event bindings. 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 in the code here. This makes it possible, for example, to define a Debug menu which is only present in the PythonShell window, and a Format menu which is only present in the Editor windows. """ from idlelib.configHandler import idleConf # Warning: menudefs is altered in macosxSupport.overrideRootMenu() # after it is determined that an OS X Aqua Tk is in use, # which cannot be done until after Tk() is first called. # Do not alter the 'file', 'options', or 'help' cascades here # without altering overrideRootMenu() as well. # TODO: Make this more robust menudefs = [ # underscore prefixes character to underscore ('file', [ ('_New File', '<
>'), ('_Open...', '<
>'), ('Open _Module...', '<
>'), ('Class _Browser', '<
>'), ('_Path Browser', '<
>'), None, ('_Save', '<
>'), ('Save _As...', '<
>'), ('Save Cop_y As...', '<
>'), None, ('Prin_t Window', '<
>'), None, ('_Close', '<
>'), ('E_xit', '<
>'), ]), ('edit', [ ('_Undo', '<
>'), ('_Redo', '<
>'), None, ('Cu_t', '<
>'), ('_Copy', '<
>'), ('_Paste', '<
>'), ('Select _All', '<
>'), None, ('_Find...', '<
>'), ('Find A_gain', '<
>'), ('Find _Selection', '<
>'), ('Find in Files...', '<
>'), ('R_eplace...', '<
>'), ('Go to _Line', '<
>'), ]), ('format', [ ('_Indent Region', '<
>'), ('_Dedent Region', '<
>'), ('Comment _Out Region', '<
>'), ('U_ncomment Region', '<
>'), ('Tabify Region', '<
>'), ('Untabify Region', '<
>'), ('Toggle Tabs', '<
>'), ('New Indent Width', '<
>'), ]), ('run', [ ('Python Shell', '<
>'), ]), ('shell', [ ('_View Last Restart', '<
>'), ('_Restart Shell', '<
>'), None, ('_Interrupt Execution', '<
>'), ]), ('debug', [ ('_Go to File/Line', '<
>'), ('!_Debugger', '<
>'), ('_Stack Viewer', '<
>'), ('!_Auto-open Stack Viewer', '<
>'), ]), ('options', [ ('Configure _IDLE', '<
>'), None, ]), ('help', [ ('_About IDLE', '<
>'), None, ('_IDLE Help', '<
>'), ('Python _Docs', '<
>'), ]), ] default_keydefs = idleConf.GetCurrentKeySet()
Simpan