HEX

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit - prohibited by configuration in /home/u547966/brikov.ru/www/wp-content/plugins/admin-menu-editor/menu-editor.php on line 745
Server: Apache
System: Linux 4.19.0-0.bpo.9-amd64 x86_64 at red40
User: u547966 (5490)
PHP: 5.3.29-mh2
Disabled: syslog, dl, popen, proc_open, proc_nice, proc_get_status, proc_close, proc_terminate, posix_mkfifo, chown, chgrp, accelerator_reset, opcache_reset, accelerator_get_status, opcache_get_status, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_exec, pcntl_getpriority, pcntl_setpriority
Upload Files
File: //usr/lib/python3.5/__pycache__/traceback.cpython-35.pyc


FaV@sdZddlZddlZddlZddlZddddddd	d
ddd
ddddddddgZdddZddZddddZddd	Z	dddZ
dZdZdddddZ
ddd dZd!dZd"d#Zd$d%Zdddd&d
Zddd'dZdddd(d
Zdddd)dZddd*dZddd+dZd,dZGd-ddZd.dZd/dZGd0ddeZGd1ddZdS)2z@Extract, format and print information about Python stack traces.N
extract_stack
extract_tbformat_exceptionformat_exception_onlyformat_listformat_stack	format_tb	print_exc
format_excprint_exception
print_lastprint_stackprint_tbclear_framesFrameSummaryStackSummaryTracebackException
walk_stackwalk_tbcCsO|dkrtj}x3tj|jD]}t|d|ddq+WdS)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/lib/python3.5/traceback.py
print_lists	r!cCstj|jS)aFormat a list of traceback entry tuples for printing.

    Given a list of tuples 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)rrrr rs
cCs tt|d|d|dS)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"rrrr r+scCst|d|jS)z5A shorthand for 'format_list(extract_tb(tb, limit))'.r")rr)r#r"rrr r5scCstjt|d|S)aReturn list of up to limit 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 quadruple (filename, line
    number, function name, text) representing the information that is
    usually printed for a stack trace.  The text is a string with
    leading and trailing whitespace stripped; if the source is not
    available it is None.
    r")rextractr)r#r"rrr r9szG
The above exception was the direct cause of the following exception:

zF
During handling of the above exception, another exception occurred:

TcCsd|dkrtj}xHtt|||d|jd|D]}t|d|ddq@WdS)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"chainrrr)rrrtyperr)etypevaluer#r"rr%linerrr rSs
	+cCs.ttt|||d|jd|S)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%rrr rhscCstt||djS)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(rrr rxscCs@t|}|dks|r,d|}nd||f}|S)Nz%s
z%s: %s
)	_some_str)r'r(valuestrr)rrr _format_final_exc_lines

r-c	Cs.yt|SWndt|jSYnXdS)Nz<unprintable %s object>)strr&__name__)r(rrr r+sr+cCs&ttjd|d|d|dS)z>Shorthand for 'print_exception(*sys.exc_info(), limit, file)'.r"rr%N)rrexc_info)r"rr%rrr r	scCs%djttjd|d|S)z%Like print_exc() but return a string.rr"r%)joinrrr0)r"r%rrr r
scCsAttdstdttjtjtj|||dS)znThis is a shorthand for 'print_exception(sys.last_type,
    sys.last_value, sys.last_traceback, limit, file)'.	last_typezno last exceptionN)hasattrr
ValueErrorrr2
last_valuelast_traceback)r"rr%rrr rscCs;|dkrtjj}tt|d|d|dS)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"rrrr r
scCs1|dkrtjj}tt|d|S)z5Shorthand for 'format_list(extract_stack(f, limit))'.Nr")rr7r8rr)r9r"rrr rscCsD|dkrtjj}tjt|d|}|j|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")rr7r8rr$rreverse)r9r"stackrrr rs
	
cCsFx?|dk	rAy|jjWntk
r4YnX|j}qWdS)zEClear all references to local variables in the frames of a traceback.N)tb_frameclearRuntimeErrortb_next)r#rrr rs
c@s|eZdZdZdZdddd	d
d	ddZd
dZddZddZddZ	e
ddZd	S)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_linelocalslookup_lineTNr)cCsc||_||_||_||_|r1|j|rVtdd|jDnd|_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.
        css'|]\}}|t|fVqdS)N)repr).0kvrrr 	<genexpr>sz(FrameSummary.__init__.<locals>.<genexpr>N)r@rArBrCr)dictitemsrD)selfr@rArBrErDr)rrr __init__s				zFrameSummary.__init__cCst|trU|j|jkoT|j|jkoT|j|jkoT|j|jkSt|tr|j|j|j|jf|kStS)N)	
isinstancerr@rArBrDtupler)NotImplemented)rMotherrrr __eq__s"zFrameSummary.__eq__cCs |j|j|j|jf|S)N)r@rArBr))rMposrrr __getitem__
szFrameSummary.__getitem__cCs"t|j|j|j|jgS)N)iterr@rArBr))rMrrr __iter__szFrameSummary.__iter__cCs%djd|jd|jd|jS)Nz7<FrameSummary file {filename}, line {lineno} in {name}>r@rArB)rr@rArB)rMrrr __repr__s	zFrameSummary.__repr__cCs7|jdkr0tj|j|jj|_|jS)N)rC	linecachegetliner@rAstrip)rMrrr r)s!zFrameSummary.line)r@rArBrCrD)r/
__module____qualname____doc__	__slots__rNrSrUrWrXpropertyr)rrrr rs	
ccsL|dkrtjjj}x'|dk	rG||jfV|j}q!WdS)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)rr7r8f_lineno)r9rrr rs
ccs1x*|dk	r,|j|jfV|j}qWdS)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)r<	tb_linenor?)r#rrr r+sc	@sXeZdZdZedddddddd	Zed
dZdd
ZdS)rzA stack of frames.r"Nlookup_linesTcapture_localsFc

Cs`|dkr<ttdd}|dk	r<|dkr<d}|dk	r|dkritj||}ntj|d|}|}t}x|D]\}}|j}	|	j}
|	j	}|j
|
tj|
|j
|r|j}nd}|jt|
||ddd|qWx|D]}
tj|
q'W|r\x|D]
}|jqKW|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.
        NtracebacklimitrmaxlenrEFrD)getattrr	itertoolsislicecollectionsdequesetf_codeco_filenameco_nameaddrY	lazycache	f_globalsf_localsappendr
checkcacher))
klass	frame_genr"rcrdresultfnamesr9rAcor@rBrsrrr r$9s6					
	 

zStackSummary.extractcCsnt}x^|D]V}t|tr5|j|q|\}}}}|jt|||d|qW|S)zCreate a StackSummary from a simple list of tuples.

        This method supports the older Python API. Each tuple should be a
        4-tuple with (filename, lineno, name, line) elements.
        r))rrOrrt)rva_listrxframer@rArBr)rrr ris	
#zStackSummary.from_listcCsg}x|D]}g}|jdj|j|j|j|jrf|jdj|jj|jrxBt|jj	D]+\}}|jdjd|d|qW|jdj
|q
W|S)aGFormat 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.
        z  File "{}", line {}, in {}
z    {}
z    {name} = {value}
rBr(r)rtrr@rArBr)r[rDsortedrLr1)rMrxr|rowrBr(rrr r}s
		"#zStackSummary.format)r/r\r]r^classmethodr$rrrrrr r6s.c
@seZdZdZddddddddd	d
ZeddZd
dZddZddZ	ddZ
ddddZdS)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.
    r"NrcTrdF_seenc
Cs|dkrt}|j||r|jdk	r|j|krtt|j|j|jjd|ddd|d|}nd}|r|jdk	r|j|krtt|j|j|jjd|ddd|d|}	nd}	||_||_|	|_|r|jnd|_t	j
t|d|d|d||_||_
t||_|rt|tr|j|_t|j|_|j|_|j|_|j|_|r|jdS)Nr"rcFrdr)rlrp	__cause__rr&
__traceback____context__
exc_traceback__suppress_context__rr$rr;exc_typer+_str
issubclassSyntaxErrorr@r.rAtextoffsetmsg_load_lines)
rMr	exc_valuerr"rcrdrcausecontextrrr rNsT	
				zTracebackException.__init__cOstt|||j||S)z.Create a TracebackException from an exception.)rr&r)rMexcargskwargsrrr from_exceptionsz!TracebackException.from_exceptioncCsKx|jD]
}|jq
W|jr1|jj|jrG|jjdS)z7Private API. force all lines in the stack to be loaded.N)r;r)rrr)rMr|rrr rs	
	zTracebackException._load_linescCs|j|jkS)N)__dict__)rMrRrrr rSszTracebackException.__eq__cCs|jS)N)r)rMrrr __str__szTracebackException.__str__c	cs||jdkr$td|jVdS|jj}|jj}|dkrV|d|}t|jts}t||jVdS|jpd}t|j	pd}dj
||V|j}|j}|dk	rXdj
|j
V|dk	rX|jd	}tt||d
}|d|j}dd|D}d
j
dj|V|jpdd}dj
||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 emites 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.z<string>?z  File "{}", line {}
z    {}

css'|]}|jr|pdVqdS) N)isspace)rGcrrr rJ&sz;TracebackException.format_exception_only.<locals>.<genexpr>z    {}^
rz<no detail available>z{}: {}
)rr)rr-rr]r\rrr@r.rArrrr[rstripminlenlstripr1r)	rMstypesmodr@rAbadliner
caretspacerrrr rs2
		z(TracebackException.format_exception_onlyr%ccs|rk|jdk	r5|jjd|EdHtVn6|jdk	rk|jrk|jjd|EdHtV|jdk	rdV|jjEdH|jEdHdS)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_messagerr;r)rMr%rrr r+s
zTracebackException.format)r/r\r]r^rNrrrrSrrrrrrr rs	9	-)r^rjrhrYr__all__r!rrrrrrrrrr-r+r	r
rr
rrrrrrr*rrrrrr <module>sD			
?
]