PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` nyMa.'c@sdZddlZddlZddlmZmZddddgZGdddZGd ddeZdddd dZ e d kre ndS( u?Utilities needed to emulate Python's interactive interpreter. iN(uCommandCompilerucompile_commanduInteractiveInterpreteruInteractiveConsoleuinteractucompile_commandcBsn|EeZdZdZdddZddddZdd Zdd d Zd d Z ddZ dS(uInteractiveInterpreteruBase 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). cCs<|dkr#idd6dd6}n||_t|_dS(uConstructor. 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. u __console__u__name__u__doc__N(uNoneulocalsuCommandCompilerucompile(uselfulocals((u)/opt/alt/python33/lib64/python3.3/code.pyu__init__s  uInteractiveInterpreter.__init__uusinglec Csiy|j|||}Wn,tttfk rG|j|dSYnX|dkrXdS|j|dS(uCompile 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( ucompileu OverflowErroru SyntaxErroru ValueErrorushowsyntaxerroruFalseuNoneuTrueuruncode(uselfusourceufilenameusymbolucode((u)/opt/alt/python33/lib64/python3.3/code.pyu runsource&s    u InteractiveInterpreter.runsourcec CsAyt||jWn&tk r+Yn|jYnXdS(uExecute 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(uexeculocalsu SystemExitu showtraceback(uselfucode((u)/opt/alt/python33/lib64/python3.3/code.pyuruncodeMs  uInteractiveInterpreter.runcodec Cstj\}}}|t_|t_|t_|r|tkry|j\}\}}}} Wntk ruYqXt||||| f}|t_ntjtj krt j ||} |j dj | ntj|||dS(upDisplay 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. uN(usysuexc_infou last_typeu last_valueulast_tracebacku SyntaxErroruargsu ValueErroru excepthooku__excepthook__u tracebackuformat_exception_onlyuwriteujoin( uselfufilenameutypeuvalueutbumsgudummy_filenameulinenouoffsetulineulines((u)/opt/alt/python33/lib64/python3.3/code.pyushowsyntaxerror`s      u&InteractiveInterpreter.showsyntaxerrorc Csztj\}}}|t_|t_|t_tj|}|dd=tj|}|rw|jddn|j tj ||Wdd}}Xtj tj kr|jdj|ntj |||dS(uDisplay 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. Niiu#Traceback (most recent call last): u(usysuexc_infou last_typeu last_valueulast_tracebacku tracebacku extract_tbu format_listuinsertuextenduformat_exception_onlyuNoneu excepthooku__excepthook__uwriteujoin(uselfutypeuvalueutbutblistulines((u)/opt/alt/python33/lib64/python3.3/code.pyu showtracebacks     u$InteractiveInterpreter.showtracebackcCstjj|dS(uWrite a string. The base implementation writes to sys.stderr; a subclass may replace this with a different implementation. N(usysustderruwrite(uselfudata((u)/opt/alt/python33/lib64/python3.3/code.pyuwritesuInteractiveInterpreter.writeN( u__name__u __module__u __qualname__u__doc__uNoneu__init__u runsourceuruncodeushowsyntaxerroru showtracebackuwrite(u __locals__((u)/opt/alt/python33/lib64/python3.3/code.pyuInteractiveInterpreters' # cBsb|EeZdZdZddddZddZdddZd d Zd d d Z dS(uInteractiveConsoleuClosely emulate the behavior of the interactive Python interpreter. This class builds on InteractiveInterpreter and adds prompting using the familiar sys.ps1 and sys.ps2, and input buffering. u cCs'tj||||_|jdS(uConstructor. The optional locals argument will be passed to the InteractiveInterpreter base class. The optional filename argument should specify the (file)name of the input stream; it will show up in tracebacks. N(uInteractiveInterpreteru__init__ufilenameu resetbuffer(uselfulocalsufilename((u)/opt/alt/python33/lib64/python3.3/code.pyu__init__s  uInteractiveConsole.__init__cCs g|_dS(uReset the input buffer.N(ubuffer(uself((u)/opt/alt/python33/lib64/python3.3/code.pyu resetbuffersuInteractiveConsole.resetbufferc!CsMy tjWntk r(dt_YnXy tjWntk rQdt_YnXd}|d kr|jdtjtj||jj fn|jdt |d}xyd|rtj}n tj}y|j |}Wn t k r|jdPYnX|j |}Wqtk rE|jd|jd}YqXqd S( uClosely emulate the interactive Python console. The optional banner argument specifies the banner to print before the first interaction; by default it prints a banner similar to the one printed by the real Python interpreter, followed by the current class name in parentheses (so as not to confuse this with the real interpreter -- since it's so close!). u>>> u... uFType "help", "copyright", "credits" or "license" for more information.uPython %s on %s %s (%s) u%s iu u KeyboardInterrupt N(usysups1uAttributeErrorups2uNoneuwriteuversionuplatformu __class__u__name__ustru raw_inputuEOFErrorupushuKeyboardInterruptu resetbuffer(uselfubannerucprtumoreupromptuline((u)/opt/alt/python33/lib64/python3.3/code.pyuinteracts<              uInteractiveConsole.interactcCsN|jj|dj|j}|j||j}|sJ|jn|S(uPush a line to the interpreter. The line should not have a trailing newline; it may have internal newlines. The line is appended to a buffer and the interpreter's runsource() method is called with the concatenated contents of the buffer as source. If this indicates that the command was executed or invalid, the buffer is reset; otherwise, the command is incomplete, and the buffer is left as it was after the line was appended. The return value is 1 if more input is required, 0 if the line was dealt with in some way (this is the same as runsource()). u (ubufferuappendujoinu runsourceufilenameu resetbuffer(uselfulineusourceumore((u)/opt/alt/python33/lib64/python3.3/code.pyupushs  uInteractiveConsole.pushucCs t|S(uDWrite a prompt and read a line. The returned line does not include the trailing newline. When the user enters the EOF key sequence, EOFError is raised. The base implementation uses the built-in function input(); a subclass may replace this with a different implementation. (uinput(uselfuprompt((u)/opt/alt/python33/lib64/python3.3/code.pyu raw_inputs uInteractiveConsole.raw_inputN( u__name__u __module__u __qualname__u__doc__uNoneu__init__u resetbufferuinteractupushu raw_input(u __locals__((u)/opt/alt/python33/lib64/python3.3/code.pyuInteractiveConsoles  - c CsZt|}|dk r$||_n%yddl}Wntk rHYnX|j|dS(uClosely emulate the interactive Python interpreter. This is a backwards compatible interface to the InteractiveConsole class. When readfunc is not specified, it attempts to import the readline module to enable GNU readline if it is available. Arguments (all optional, all default to None): banner -- passed to InteractiveConsole.interact() readfunc -- if not None, replaces InteractiveConsole.raw_input() local -- passed to InteractiveInterpreter.__init__() iN(uInteractiveConsoleuNoneu raw_inputureadlineu ImportErroruinteract(ubannerureadfunculocaluconsoleureadline((u)/opt/alt/python33/lib64/python3.3/code.pyuinteracts    u__main__( u__doc__usysu tracebackucodeopuCommandCompilerucompile_commandu__all__uInteractiveInterpreteruInteractiveConsoleuNoneuinteractu__name__(((u)/opt/alt/python33/lib64/python3.3/code.pyus    k