U e5d;\@s:dZddlZddlZddlZddlZddddddd d d d d ddddddddgZd3ddZddZd4ddZd5dd Z d6ddZ dZ dZ d7dd Z d8d dZd!dZd"d#Zd$d%Zd9d&d Zd:d'd Zd;d(d Zdd+dZd,dZGd-ddZd.dZd/dZd0ZGd1ddeZGd2ddZdS)?z@Extract, format and print information about Python stack traces.N extract_stack extract_tbformat_exceptionformat_exception_only format_list format_stack format_tb print_exc format_excprint_exception print_last print_stackprint_tb clear_frames FrameSummary StackSummaryTracebackException walk_stackwalk_tbcCs4|dkrtj}t|D]}t||ddqdS)zyPrint the list of tuples as returned by extract_tb() or extract_stack() as a formatted stack trace to the given file.Nfileend)sysstderrr from_listformatprint)extracted_listritemr !/usr/lib64/python3.8/traceback.py print_listsr"cCst|S)aFormat a list of tuples or FrameSummary objects for printing. Given a list of tuples or FrameSummary objects as returned by extract_tb() or extract_stack(), return a list of strings ready for printing. Each string in the resulting list corresponds to the item with the same index in the argument list. Each string ends in a newline; the strings may contain internal newlines as well, for those items whose source text line is not None. )rrr)rr r r!rs cCstt||d|ddS)aPrint up to 'limit' stack trace entries from the traceback 'tb'. If 'limit' is omitted or None, all entries are printed. If 'file' is omitted or None, the output goes to sys.stderr; otherwise 'file' should be an open file or file-like object with a write() method. limitrN)r"r)tbr$rr r r!r-scCst||dS)z5A shorthand for 'format_list(extract_tb(tb, limit))'.r#)rrr&r$r r r!r7scCstjt||dS)a# Return a StackSummary object representing a list of pre-processed entries from traceback. This is useful for alternate formatting of stack traces. If 'limit' is omitted or None, all entries are extracted. A pre-processed stack trace entry is a FrameSummary object containing attributes filename, lineno, name, and line representing the information that is usually printed for a stack trace. The line is a string with leading and trailing whitespace stripped; if the source is not available it is None. r#)rextractrr'r r r!r;s zG The above exception was the direct cause of the following exception: zF During handling of the above exception, another exception occurred: TcCsB|dkrtj}tt||||dj|dD]}t||ddq*dS)aPrint exception up to 'limit' stack trace entries from 'tb' to 'file'. This differs from print_tb() in the following ways: (1) if traceback is not None, it prints a header "Traceback (most recent call last):"; (2) it prints the exception type and value after the stack trace; (3) if type is SyntaxError and value has the appropriate format, it prints the line where the syntax error occurred with a caret on the next line indicating the approximate position of the error. Nr#chainrr)rrrtyperr)etypevaluer&r$rr*liner r r!r Ws cCs ttt||||dj|dS)azFormat a stack trace and the exception information. The arguments have the same meaning as the corresponding arguments to print_exception(). The return value is a list of strings, each ending in a newline and some containing internal newlines. When these lines are concatenated and printed, exactly the same text is printed as does print_exception(). r#r))listrr+r)r,r-r&r$r*r r r!rls cCstt||dS)aFormat the exception part of a traceback. The arguments are the exception type and value such as given by sys.last_type and sys.last_value. The return value is a list of strings, each ending in a newline. Normally, the list contains a single string; however, for SyntaxError exceptions, it contains several lines that (when printed) display detailed information about where the syntax error occurred. The message indicating which exception occurred is always the last string in the list. N)r/rr)r,r-r r r!r|scCs.t|}|dks|sd|}n d||f}|S)Nz%s z%s: %s ) _some_str)r,r-valuestrr.r r r!_format_final_exc_lines    r2cCs*z t|WSdt|jYSXdS)Nz)strr+__name__)r-r r r!r0s r0cCstt|||ddS)z>Shorthand for 'print_exception(*sys.exc_info(), limit, file)'.r$rr*N)r rexc_infor5r r r!r scCsdtt||dS)z%Like print_exc() but return a string.rr$r*)joinrrr6r7r r r!r scCs.ttdstdttjtjtj|||dS)znThis is a shorthand for 'print_exception(sys.last_type, sys.last_value, sys.last_traceback, limit, file)'. last_typezno last exceptionN)hasattrr ValueErrorr r9 last_valuelast_tracebackr5r r r!r s cCs*|dkrtj}tt||d|ddS)zPrint a stack trace from its invocation point. The optional 'f' argument can be used to specify an alternate stack frame at which to start. The optional 'limit' and 'file' arguments have the same meaning as for print_exception(). Nr#r%)r _getframef_backr"r)fr$rr r r!r s cCs"|dkrtj}tt||dS)z5Shorthand for 'format_list(extract_stack(f, limit))'.Nr#)rr>r?rr)r@r$r r r!rs cCs0|dkrtj}tjt||d}||S)asExtract the raw traceback from the current stack frame. The return value has the same format as for extract_tb(). The optional 'f' and 'limit' arguments have the same meaning as for print_stack(). Each item in the list is a quadruple (filename, line number, function name, text), and the entries are in order from oldest to newest stack frame. Nr#)rr>r?rr(rreverse)r@r$stackr r r!rs  cCs8|dk r4z|jWntk r*YnX|j}qdS)zEClear all references to local variables in the frames of a traceback.N)tb_frameclear RuntimeErrortb_nextr&r r r!rs c@sZeZdZdZdZddddddZdd Zd d Zd d ZddZ ddZ e ddZ dS)ra,A single frame from a traceback. - :attr:`filename` The filename for the frame. - :attr:`lineno` The line within filename for the frame that was active when the frame was captured. - :attr:`name` The name of the function or method that was executing when the frame was captured. - :attr:`line` The text from the linecache module for the of code that was running when the frame was captured. - :attr:`locals` Either None if locals were not supplied, or a dict mapping the name to the repr() of the variable. )filenamelinenoname_linelocalsTN) lookup_linerLr.cCsB||_||_||_||_|r"|j|r8dd|Dnd|_dS)aConstruct a FrameSummary. :param lookup_line: If True, `linecache` is consulted for the source code line. Otherwise, the line will be looked up when first needed. :param locals: If supplied the frame locals, which will be captured as object representations. :param line: If provided, use this instead of looking up the line in the linecache. cSsi|]\}}|t|qSr )repr).0kvr r r! sz)FrameSummary.__init__..N)rHrIrJrKr.itemsrL)selfrHrIrJrMrLr.r r r!__init__s zFrameSummary.__init__cCs`t|tr:|j|jko8|j|jko8|j|jko8|j|jkSt|tr\|j|j|j|jf|kStSN) isinstancerrHrIrJrLtupler.NotImplementedrTotherr r r!__eq__s      zFrameSummary.__eq__cCs|j|j|j|jf|SrV)rHrIrJr.)rTposr r r! __getitem__szFrameSummary.__getitem__cCst|j|j|j|jgSrV)iterrHrIrJr.rTr r r!__iter__szFrameSummary.__iter__cCsdj|j|j|jdS)Nz7)rHrIrJ)rrHrIrJr`r r r!__repr__s zFrameSummary.__repr__cCsdS)Nr r`r r r!__len__szFrameSummary.__len__cCs&|jdkr t|j|j|_|jSrV)rK linecachegetlinerHrIstripr`r r r!r.s zFrameSummary.line) r4 __module__ __qualname____doc__ __slots__rUr\r^rarbrdpropertyr.r r r r!rs   ccs4|dkrtjj}|dk r0||jfV|j}qdS)zWalk a stack yielding the frame and line number for each frame. This will follow f.f_back from the given frame. If no frame is given, the current stack is used. Usually used with StackSummary.extract. N)rr>r?f_lineno)r@r r r!r$s   ccs"|dk r|j|jfV|j}qdS)zWalk a traceback yielding the frame and line number for each frame. This will follow tb.tb_next (and thus is in the opposite order to walk_stack). Usually used with StackSummary.extract. N)rC tb_linenorFrGr r r!r1sc@s:eZdZdZeddddddZedd Zd d ZdS) rzA stack of frames.NTFr$ lookup_linescapture_localsc Cs|dkr(ttdd}|dk r(|dkr(d}|dk rV|dkrFt||}ntj|| d}|}t}|D]Z\}}|j} | j} | j } | | t | |j |r|j} nd} |t| || d| dqf|D]} t | q|r|D] }|jq|S)a?Create a StackSummary from a traceback or stack object. :param frame_gen: A generator that yields (frame, lineno) tuples to include in the stack. :param limit: None to include all frames or the number of frames to include. :param lookup_lines: If True, lookup lines for each frame immediately, otherwise lookup is deferred until the frame is rendered. :param capture_locals: If True, the local variables from each frame will be captured as object representations into the FrameSummary. Ntracebacklimitr)maxlenF)rMrL)getattrr itertoolsislice collectionsdequesetf_code co_filenameco_nameaddre lazycache f_globalsf_localsappendr checkcacher.) klass frame_genr$rqrrresultfnamesr@rIcorHrJrr r r!r(As@     zStackSummary.extractc CsLt}|D]<}t|tr$||q |\}}}}|t||||dq |S)z Create a StackSummary object from a supplied list of FrameSummary objects or old-style list of tuples. )r.)rrWrr)ra_listrframerHrIrJr.r r r!rqs    zStackSummary.from_listc Csng}d}d}d}d}|D]}|dksT||jksT|dksT||jksT|dksT||jkr|tkr|t8}|d|d|dkr|dndd|j}|j}|j}d}|d7}|tkrqg}|d |j|j|j|jr|d |j|jr t |j D]\}} |d j|| d q|d |q|tkrj|t8}|d|d|dkr^dndd|S) aFormat the stack ready for printing. Returns a list of strings ready for printing. Each string in the resulting list corresponds to a single frame from the stack. Each string ends in a newline; the strings may contain internal newlines as well, for those items with source text lines. For long sequences of the same frame and line, the first few repetitions are shown, followed by a summary line stating the exact number of further repetitions. Nrz [Previous line repeated z more timesrz] z File "{}", line {}, in {}  {} z {name} = {value} )rJr-) rHrIrJ_RECURSIVE_CUTOFFrrr.rgrLsortedrSr8) rTr last_file last_line last_namecountrrowrJr-r r r!rsZ   zStackSummary.format)r4rhrirj classmethodr(rrr r r r!r>s/ c@s^eZdZdZdddddddZedd Zd d Zd d ZddZ ddZ ddddZ dS)raAn exception ready for rendering. The traceback module captures enough attributes from the original exception to this intermediary form to ensure that no references are held, while still being able to fully print or format it. Use `from_exception` to create TracebackException instances from exception objects, or the constructor to create TracebackException instances from individual components. - :attr:`__cause__` A TracebackException of the original *__cause__*. - :attr:`__context__` A TracebackException of the original *__context__*. - :attr:`__suppress_context__` The *__suppress_context__* value from the original exception. - :attr:`stack` A `StackSummary` representing the traceback. - :attr:`exc_type` The class of the original traceback. - :attr:`filename` For syntax errors - the filename where the error occurred. - :attr:`lineno` For syntax errors - the linenumber where the error occurred. - :attr:`text` For syntax errors - the text where the error occurred. - :attr:`offset` For syntax errors - the offset into the text where the error occurred. - :attr:`msg` For syntax errors - the compiler error message. NTFr$rqrr_seenc CsJ|dkrt}|t||r\|jdk r\t|j|kr\tt|j|j|jj|d||d}nd}|r|jdk rt|j|krtt|j|j|jj|d||d} nd} ||_| |_|r|jnd|_t j t ||||d|_ ||_ t||_|r8t|tr8|j|_|j} | dk rt| nd|_|j|_|j|_|j|_|rF|dS)NFrrp)rzr~id __cause__rr+ __traceback__ __context____suppress_context__rr(rrBexc_typer0_str issubclass SyntaxErrorrHrIr3textoffsetmsg _load_lines) rTr exc_value exc_tracebackr$rqrrrcausecontextlnor r r!rUsd      zTracebackException.__init__cOs|t|||jf||S)z.Create a TracebackException from an exception.)r+r)clsexcargskwargsr r r!from_exceptionsz!TracebackException.from_exceptioncCs6|jD] }|jq|jr"|j|jr2|jdS)z7Private API. force all lines in the stack to be loaded.N)rBr.rrr)rTrr r r!rs   zTracebackException._load_linescCs |j|jkSrV)__dict__rZr r r!r\szTracebackException.__eq__cCs|jSrV)rr`r r r!__str__szTracebackException.__str__ccs6|jdkrtd|jVdS|jj}|jj}|dkr@|d|}t|jts^t||jVdSd}|jdk rd|j pxd|jVn|j dk rd|j }|j }|j }|dk rd| V|dk r| d }tt||d }|d|}d d |D}d d|V|jp d}d|||VdS)aFormat the exception part of the traceback. The return value is a generator of strings, each ending in a newline. Normally, the generator emits a single string; however, for SyntaxError exceptions, it emits several lines that (when printed) display detailed information about where the syntax error occurred. The message indicating which exception occurred is always the last string in the output. N)__main__builtins.rz File "{}", line {} zz ({})r rcss|]}|r|pdVqdS) N)isspace)rOcr r r! Msz;TracebackException.format_exception_only..z {}^ zz {}: {}{} )rr2rrirhrrrIrrHrrrgrstripminlenlstripr8r)rTstypesmodfilename_suffixbadliner caretspacerr r r!r"s<          z(TracebackException.format_exception_onlyr)ccs|rT|jdk r*|jj|dEdHtVn*|jdk rT|jsT|jj|dEdHtV|jrpdV|jEdH|EdHdS)aFormat the exception. If chain is not *True*, *__cause__* and *__context__* will not be formatted. The return value is a generator of strings, each ending in a newline and some containing internal newlines. `print_exception` is a wrapper around this method which just prints the lines to a file. The message indicating which exception occurred is always the last string in the output. Nr)z#Traceback (most recent call last): )rr_cause_messagerr_context_messagerBr)rTr*r r r!rRs   zTracebackException.format) r4rhrirjrUrrrr\rrrr r r r!rs :  0)N)NN)N)N)NNT)NT)NNT)NT)NNT)NNN)NN)NN) rjrxrvrer__all__r"rrrrrrr rrr2r0r r r r rrrrrrrr/rrr r r r!sb          A  z