
Y]c           @   s  d  Z  d d l m Z d db dc dd de df da dg dh di da dj da dk dl g f d dm dn da do dp dq dr da ds dt du dv dw dx g f d3 dy dz d{ d| d} d~ d d g f dD d g f dG d d da d g f dN d d d d g f dW d da g f dZ d da d d g f g Z e j   Z da S(   s  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.

i(   t   idleConft   files	   _New Files   <<open-new-window>>s   _Open...s   <<open-window-from-file>>s   Open _Module...s   <<open-module>>s   Class _Browsers   <<open-class-browser>>s   _Path Browsers   <<open-path-browser>>t   _Saves   <<save-window>>s   Save _As...s   <<save-window-as-file>>s   Save Cop_y As...s   <<save-copy-of-window-as-file>>s   Prin_t Windows   <<print-window>>t   _Closes   <<close-window>>t   E_xits   <<close-all-windows>>t   editt   _Undos   <<undo>>t   _Redos   <<redo>>t   Cu_ts   <<cut>>t   _Copys   <<copy>>t   _Pastes	   <<paste>>s   Select _Alls   <<select-all>>s   _Find...s   <<find>>s   Find A_gains   <<find-again>>s   Find _Selections   <<find-selection>>s   Find in Files...s   <<find-in-files>>s   R_eplace...s   <<replace>>s   Go to _Lines   <<goto-line>>t   formats   _Indent Regions   <<indent-region>>s   _Dedent Regions   <<dedent-region>>s   Comment _Out Regions   <<comment-region>>s   U_ncomment Regions   <<uncomment-region>>s   Tabify Regions   <<tabify-region>>s   Untabify Regions   <<untabify-region>>s   Toggle Tabss   <<toggle-tabs>>s   New Indent Widths   <<change-indentwidth>>t   runs   Python Shells   <<open-python-shell>>t   shells   _View Last Restarts   <<view-restart>>s   _Restart Shells   <<restart-shell>>s   _Interrupt Executions   <<interrupt-execution>>t   debugs   _Go to File/Lines   <<goto-file-line>>s
   !_Debuggers   <<toggle-debugger>>s   _Stack Viewers   <<open-stack-viewer>>s   !_Auto-open Stack Viewers   <<toggle-jit-stack-viewer>>t   optionss   Configure _IDLEs   <<open-config-dialog>>t   helps   _About IDLEs   <<about-idle>>s
   _IDLE Helps   <<help>>s   Python _Docss   <<python-docs>>N(   s	   _New Files   <<open-new-window>>(   s   _Open...s   <<open-window-from-file>>(   s   Open _Module...s   <<open-module>>(   s   Class _Browsers   <<open-class-browser>>(   s   _Path Browsers   <<open-path-browser>>(   R   s   <<save-window>>(   s   Save _As...s   <<save-window-as-file>>(   s   Save Cop_y As...s   <<save-copy-of-window-as-file>>(   s   Prin_t Windows   <<print-window>>(   R   s   <<close-window>>(   R   s   <<close-all-windows>>(   R   s   <<undo>>(   R   s   <<redo>>(   R   s   <<cut>>(   R	   s   <<copy>>(   R
   s	   <<paste>>(   s   Select _Alls   <<select-all>>(   s   _Find...s   <<find>>(   s   Find A_gains   <<find-again>>(   s   Find _Selections   <<find-selection>>(   s   Find in Files...s   <<find-in-files>>(   s   R_eplace...s   <<replace>>(   s   Go to _Lines   <<goto-line>>(   s   _Indent Regions   <<indent-region>>(   s   _Dedent Regions   <<dedent-region>>(   s   Comment _Out Regions   <<comment-region>>(   s   U_ncomment Regions   <<uncomment-region>>(   s   Tabify Regions   <<tabify-region>>(   s   Untabify Regions   <<untabify-region>>(   s   Toggle Tabss   <<toggle-tabs>>(   s   New Indent Widths   <<change-indentwidth>>(   s   Python Shells   <<open-python-shell>>(   s   _View Last Restarts   <<view-restart>>(   s   _Restart Shells   <<restart-shell>>(   s   _Interrupt Executions   <<interrupt-execution>>(   s   _Go to File/Lines   <<goto-file-line>>(   s
   !_Debuggers   <<toggle-debugger>>(   s   _Stack Viewers   <<open-stack-viewer>>(   s   !_Auto-open Stack Viewers   <<toggle-jit-stack-viewer>>(   s   Configure _IDLEs   <<open-config-dialog>>(   s   _About IDLEs   <<about-idle>>(   s
   _IDLE Helps   <<help>>(   s   Python _Docss   <<python-docs>>(   t   __doc__t   idlelib.configHandlerR    t   Nonet   menudefst   GetCurrentKeySett   default_keydefs(    (    (    s!   lib/python2.7/idlelib/Bindings.pyt   <module>
   sz   							