3
\v) @ s d Z ddlZddlZddlZddlmZmZ ddddgZG dd dZG d d deZ dd
dZ
edkrej Z
e
jdd
dd e
j ZejsejjrdZndZe
e dS )z?Utilities needed to emulate Python's interactive interpreter.
N)CommandCompilercompile_commandInteractiveInterpreterInteractiveConsoleinteractr c @ sF e Zd ZdZdddZdddZd d
ZdddZd
d Zdd Z dS )r zBase class for InteractiveConsole.
This class deals with parsing and interpreter state (the user's
namespace); it doesn't deal with input buffering or prompting or
input file naming (the filename is always passed in explicitly).
Nc C s$ |dkrddd}|| _ t | _dS )a Constructor.
The optional 'locals' argument specifies the dictionary in
which code will be executed; it defaults to a newly created
dictionary with key "__name__" set to "__console__" and key
"__doc__" set to None.
NZ__console__)__name____doc__)localsr compile)selfr r /usr/lib64/python3.6/code.py__init__ s
zInteractiveInterpreter.__init__singlec
C sR y| j |||}W n$ tttfk
r6 | j| dS X |dkrDdS | j| dS )a Compile and run some source in the interpreter.
Arguments are as for compile_command().
One several things can happen:
1) The input is incorrect; compile_command() raised an
exception (SyntaxError or OverflowError). A syntax traceback
will be printed by calling the showsyntaxerror() method.
2) The input is incomplete, and more input is required;
compile_command() returned None. Nothing happens.
3) The input is complete; compile_command() returned a code
object. The code is executed by calling self.runcode() (which
also handles run-time exceptions, except for SystemExit).
The return value is True in case 2, False in the other cases (unless
an exception is raised). The return value can be used to
decide whether to use sys.ps1 or sys.ps2 to prompt the next
line.
FNT)r
OverflowErrorSyntaxError
ValueErrorshowsyntaxerrorruncode)r sourcefilenameZsymbolcoder r r
runsource' s
z InteractiveInterpreter.runsourcec C s> yt || j W n( tk
r& Y n | j Y nX dS )a Execute a code object.
When an exception occurs, self.showtraceback() is called to
display a traceback. All exceptions are caught except
SystemExit, which is reraised.
A note about KeyboardInterrupt: this exception may occur
elsewhere in this code, and may not always be caught. The
caller should be prepared to deal with it.
N)execr
SystemExit
showtraceback)r r r r r
r N s zInteractiveInterpreter.runcodec C s t j \}}}|t _|t _|t _|rp|tkrpy|j\}\}}}} W n tk
rV Y nX t||||| f}|t _t jt j krt
j||}
| jdj
|
nt j||| dS )ap Display the syntax error that just occurred.
This doesn't display a stack trace because there isn't one.
If a filename is given, it is stuffed in the exception instead
of what was there before (because Python's parser always uses
"" when reading from a string).
The output is written by self.write(), below.
N)sysexc_info last_type
last_valuelast_tracebackr argsr
excepthook__excepthook__ tracebackformat_exception_onlywritejoin)r r typevaluetbmsgZdummy_filenamelinenooffsetlinelinesr r r
r a s z&InteractiveInterpreter.showsyntaxerrorc C s| t j \t _t _}}|t _zPtj|d |d |j}t jt j krT| j
dj| nt j|d |d | W dd }}X dS )zDisplay the exception that just occurred.
We remove the first stack item because it is our own code.
The output is written by self.write(), below.
r r N)r r r r! r" r&