Your IP : 216.73.216.245
B
� fM"�@s�dZddlZddlZddlZddlmZddlmZddl m
Z
ddl mZddlm
Z
ddl mZdZGd d
�d
�Zedkr�ddlmZed
dd�dS)a�Execute code from an editor.
Check module: do a full syntax check of the current module.
Also run the tabnanny to catch any inconsistent tabs.
Run module: also execute the module's code in the __main__ namespace.
The window must have been saved previously. The module is added to
sys.modules, and is also added to the __main__ namespace.
TODO: Specify command line arguments in a dialog box.
�N)�idleConf)�macosx)�pyshell)� CustomRun)�outwina/Error: Inconsistent indentation detected!
1) Your indentation is outright incorrect (easy to fix), OR
2) Your indentation mixes tabs and spaces.
To fix case 2, change all tabs to spaces by using Edit->Select All followed by Format->Untabify Region and specify the number of columns used by each tab.
c@sbeZdZdd�Zdd�Zdd�Zdd�Zd d
�Zdd�Zd
d�dd�Z dd�Z
dd�Zdd�ZdS)�
ScriptBindingcCs>||_|jj|_|jj|_g|_t��r:|jj�d|j�dS)Nz<<run-module-event-2>>) �editwin�flist�root�cli_argsr� isCocoaTk�
text_frameZbind�_run_module_event)�selfr�r�6/opt/alt/python37/lib64/python3.7/idlelib/runscript.py�__init__%s
zScriptBinding.__init__cCsNt|jtj�r|jj��dS|��}|s.dS|�|�s<dS|�|�sJdSdS)N�break) �
isinstancerr�OutputWindow�text�bell�getfilename�checksyntax�tabnanny)r�event�filenamerrr�check_module_event1s
z ScriptBinding.check_module_eventcCs�t�|���}yt�t�|j��Wn�tjk
rp}z.|j\}\}}|j� |�|�
dd|�dSd}~XYn@tjk
r�}z |j� |���|�
dt
�dSd}~XYnXWdQRXdS)NzTabnanny Tokenizing ErrorzToken Error: %sFzTab/space errorT)�tokenize�openrZprocess_tokens�generate_tokens�readline�
TokenError�argsrZgotoline�errorboxZNannyNagZ
get_lineno�indent_message)rr�f�msgZmsgtxt�lineno�startZnagrrrr>s
zScriptBinding.tabnannyc
Cs\|j��|_}|��}|�|j�t|d��}|��}WdQRXd|krb|�dd�}|�dd�}|r~|dt d�kr~|d}|j
}|j}|�ddd�z�yt
||d �Stttfk
�rF}zzt|d
d�p�|p�d} t|d
d�p�d}
t|dd�p�d}|dk�r|
d7}
d|
d|df}|�||�|�dd| �dSd}~XYnXWd|�|�XdS)N�rb�
s
�
���ZERRORz1.0�end�execr'�z<no detail available>r(��offsetrz0.0 + %d lines + %d chars�SyntaxErrorz%-20sF)r Z
open_shell�shellZget_warning_streamZset_warning_stream�stderrr�read�replace�ordrrZ
tag_remove�compiler3�
OverflowError�
ValueError�getattrZcolorize_syntax_errorr$)
rrr4Zsaved_streamr&�sourcerr�valuer'r(r2�posrrrrPs4
zScriptBinding.checksyntaxcs2t��r$�jj�d�fdd��dS��|�SdS)N��cs�jj�d�S)Nz<<run-module-event-2>>)rr
Zevent_generater)rrr�<lambda>vsz0ScriptBinding.run_module_event.<locals>.<lambda>r)rrrr
Zafterr)rrr)rr�run_module_eventns
zScriptBinding.run_module_eventcCs|j|dd�S)NT)� customize)r)rrrrr�run_custom_event|szScriptBinding.run_custom_eventF)rCc Cst|jtj�r|jj��dS|��}|s.dS|�|�}|s@dS|�|�sNdS|r�d|j� ��d�}t
|jj||jd�j
}|s�dS|r�|ngdf\|_}|jj}tjr�|r�|jd|d�tj�|�} |g}
|jr�|
|j7}
|�d|�d |
�d
| �d��|�|�|�|�dS)ayRun the module after setting up the environment.
First check the syntax. Next get customization. If OK, make
sure the shell is active and then transfer the arguments, set
the run environment's working directory to the directory of the
module being executed and also add that directory to its
sys.path if not already included.
rz
Customize z Run)rTF)Zwith_cwdrzif 1:
__file__ = zi
import sys as _sys
from os.path import basename as _basename
argv = z�
if (not _sys.argv or
_basename(_sys.argv[0]) != _basename(__file__) or
len(argv) > 1):
_sys.argv = argv
import os as _os
_os.chdir(z:)
del _sys, argv, _basename, _os
)rrrrrrrrrZshort_titlerr4r�result�interprZuse_subprocessZrestart_subprocess�os�path�dirnameZ
runcommandZprepend_syspathZruncode)rrrCr�code�titleZrun_argsZrestartrFrI�argvrrrrs>
zScriptBinding._run_module_eventcCsx|jjj}|j��sttjddddd�}|r>|r>|jj�d�n6|��}|jj� �|rp|jj�d�|jjj}nd}|S)a�Get source filename. If not saved, offer to save (or create) file
The debugger requires a source file. Make sure there is one, and that
the current version of the source buffer has been saved. If the user
declines to save or cancels the Save As dialog, return None.
If the user has configured IDLE for Autosave, the file will be
silently saved if it already exists and is dirty.
�mainZGeneral�autosave�bool)�typeN)
r�iorZ get_savedrZ GetOptionZsave�ask_save_dialogr� focus_set)rrrN�confirmrrrr�s
zScriptBinding.getfilenamecCs d}tjd|tj|jjd�}|S)Nz%Source Must Be Saved
OK to Save?zSave Before Run or Check)rK�message�default�parent)�tkMessageBoxZaskokcancelZOKrr)rr'rTrrrrR�szScriptBinding.ask_save_dialogcCs$tj|||jjd�|jj��dS)N)rW)rXZ showerrorrrrS)rrKrUrrrr$�szScriptBinding.errorboxN)
�__name__�
__module__�__qualname__rrrrrBrDrrrRr$rrrrr#s
7r�__main__)rMz idlelib.idle_test.test_runscript�)� verbosity)�__doc__rGrrZtkinter.messageboxZ
messageboxrXZidlelib.configrZidlelibrrZ
idlelib.queryrrr%rrYZunittestrMrrrr�<module>s
=
?>