Hacked By AnonymousFox

Current Path : /opt/alt/python39/lib64/python3.9/__pycache__/
Upload File :
Current File : //opt/alt/python39/lib64/python3.9/__pycache__/bdb.cpython-39.pyc

a

���e�z�@s�dZddlZddlZddlZddlmZmZmZgd�ZeeBeBZ	Gdd�de
�ZGdd�d�Zd	d
�Z
Gdd�d�Zd
d�Zdd�ZGdd�de�Zdd�Zdd�Zdd�ZdS)zDebugger basics�N)�CO_GENERATOR�CO_COROUTINE�CO_ASYNC_GENERATOR)�BdbQuit�Bdb�
Breakpointc@seZdZdZdS)rz Exception to give up completely.N)�__name__�
__module__�__qualname__�__doc__�rr�(/opt/alt/python39/lib64/python3.9/bdb.pyr
src@speZdZdZdZdd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd �Zd!d"�Zd#d$�Zd[d&d'�Zd\d(d)�Zd*d+�Zd,d-�Zd.d/�Zd]d0d1�Zd2d3�Zd4d5�Zd^d7d8�Zd9d:�Zd;d<�Zd=d>�Z d?d@�Z!dAdB�Z"dCdD�Z#dEdF�Z$dGdH�Z%dIdJ�Z&dKdL�Z'dMdN�Z(d_dPdQ�Z)d`dRdS�Z*dadTdU�Z+dVdW�Z,dXdY�Z-dS)braGeneric Python debugger base class.

    This class takes care of details of the trace facility;
    a derived class should implement user interaction.
    The standard debugger class (pdb.Pdb) is an example.

    The optional skip argument must be an iterable of glob-style
    module name patterns.  The debugger will not step into frames
    that originate in a module that matches one of these patterns.
    Whether a frame is considered to originate in a certain module
    is determined by the __name__ in the frame globals.
    NcCs(|rt|�nd|_i|_i|_d|_dS)N)�set�skip�breaks�fncache�frame_returning)�selfrrrr
�__init__szBdb.__init__cCsR|d|dd�dkr|S|j�|�}|sNtj�|�}tj�|�}||j|<|S)a%Return canonical form of filename.

        For real filenames, the canonical form is a case-normalized (on
        case insensitive filesystems) absolute path.  'Filenames' with
        angle brackets, such as "<stdin>", generated in interactive
        mode, are returned unchanged.
        �<�����>)r�get�os�path�abspath�normcase)r�filename�canonicrrr
r%s
zBdb.canoniccCs&ddl}|��d|_|�dd�dS)z5Set values of attributes as ready to start debugging.rN)�	linecache�
checkcache�botframe�
_set_stopinfo)rr rrr
�reset6sz	Bdb.resetcCs�|jr
dS|dkr|�|�S|dkr0|�||�S|dkrD|�||�S|dkrX|�||�S|dkrf|jS|dkrt|jS|dkr�|jStd	t|��|jS)
aODispatch a trace function for debugged frames based on the event.

        This function is installed as the trace function for debugged
        frames. Its return value is the new trace function, which is
        usually itself. The default implementation decides how to
        dispatch a frame, depending on the type of event (passed in as a
        string) that is about to be executed.

        The event can be one of the following:
            line: A new line of code is going to be executed.
            call: A function is about to be called or another code block
                  is entered.
            return: A function or other code block is about to return.
            exception: An exception has occurred.
            c_call: A C function is about to be called.
            c_return: A C function has returned.
            c_exception: A C function has raised an exception.

        For the Python events, specialized functions (see the dispatch_*()
        methods) are called.  For the C events, no action is taken.

        The arg parameter depends on the previous event.
        N�lineZcall�returnZ	exceptionZc_callZc_exceptionZc_returnz*bdb.Bdb.dispatch: unknown debugging event:)�quitting�
dispatch_line�
dispatch_call�dispatch_return�dispatch_exception�trace_dispatch�print�repr)r�frameZevent�argrrr
r,=s$
zBdb.trace_dispatchcCs.|�|�s|�|�r(|�|�|jr(t�|jS)a	Invoke user function and return trace function for line event.

        If the debugger stops on the current line, invoke
        self.user_line(). Raise BdbQuit if self.quitting is set.
        Return self.trace_dispatch to continue tracing in this scope.
        )�	stop_here�
break_here�	user_liner'rr,�rr/rrr
r(hs

zBdb.dispatch_linecCsd|jdur|j|_|jS|�|�s0|�|�s0dS|jrH|jjt@rH|jS|�	||�|j
r^t�|jS)aInvoke user function and return trace function for call event.

        If the debugger stops on this function call, invoke
        self.user_call(). Raise BdbQuit if self.quitting is set.
        Return self.trace_dispatch to continue tracing in this scope.
        N)r"�f_backr,r1�break_anywhere�	stopframe�f_code�co_flags�GENERATOR_AND_COROUTINE_FLAGS�	user_callr'r�rr/r0rrr
r)ts

zBdb.dispatch_callcCs�|�|�s||jkr||jr,|jjt@r,|jSz||_|�||�Wd|_nd|_0|j	r\t
�|j|ur||jdkr||�dd�|jS)aInvoke user function and return trace function for return event.

        If the debugger stops on this function return, invoke
        self.user_return(). Raise BdbQuit if self.quitting is set.
        Return self.trace_dispatch to continue tracing in this scope.
        Nr)
r1�returnframer7r8r9r:r,r�user_returnr'r�
stoplinenor#r<rrr
r*�s
zBdb.dispatch_returncCs�|�|�rF|jjt@r.|dtur.|ddus�|�||�|jr�t�nD|jr�||jur�|jjjt@r�|dtt	fvr�|�||�|jr�t�|j
S)aInvoke user function and return trace function for exception event.

        If the debugger stops on this exception, invoke
        self.user_exception(). Raise BdbQuit if self.quitting is set.
        Return self.trace_dispatch to continue tracing in this scope.
        r�N)r1r8r9r:�
StopIteration�user_exceptionr'rr7�
GeneratorExitr,r<rrr
r+�s 

�
���
zBdb.dispatch_exceptioncCs.|durdS|jD]}t�||�rdSqdS)z4Return True if module_name matches any skip pattern.NFT)r�fnmatch)rZmodule_name�patternrrr
�is_skipped_module�s
zBdb.is_skipped_modulecCsN|jr|�|j�d��rdS||jur@|jdkr4dS|j|jkS|jsJdSdS)z>Return True if frame is below the starting frame in the stack.rFrT)rrF�	f_globalsrr7r?�f_linenor4rrr
r1�s�

z
Bdb.stop_herecCs�|�|jj�}||jvrdS|j}||j|vrJ|jj}||j|vrJdSt|||�\}}|r�|j|_|r�|j	r�|�
t|j��dSdSdS)z�Return True if there is an effective breakpoint for this line.

        Check for line or function breakpoint and if in effect.
        Delete temporary breakpoints if effective() says to.
        FTN)rr8�co_filenamerrH�co_firstlineno�	effective�numberZ	currentbp�	temporary�do_clear�str)rr/r�lineno�bp�flagrrr
r2�s

zBdb.break_herecCstd��dS)zlRemove temporary breakpoint.

        Must implement in derived classes or get NotImplementedError.
        z)subclass of bdb must implement do_clear()N)�NotImplementedError)rr0rrr
rN�szBdb.do_clearcCs|�|jj�|jvS)zEReturn True if there is any breakpoint for frame's filename.
        )rr8rIrr4rrr
r6�szBdb.break_anywherecCsdS)z&Called if we might stop in a function.Nr)rr/Z
argument_listrrr
r;sz
Bdb.user_callcCsdS)z'Called when we stop or break at a line.Nrr4rrr
r3sz
Bdb.user_linecCsdS)z&Called when a return trap is set here.Nr)rr/Zreturn_valuerrr
r>	szBdb.user_returncCsdS)z$Called when we stop on an exception.Nr)rr/�exc_inforrr
rB
szBdb.user_exceptionrcCs||_||_d|_||_dS)z�Set the attributes for stopping.

        If stoplineno is greater than or equal to 0, then stop at line
        greater than or equal to the stopline.  If stoplineno is -1, then
        don't stop at all.
        FN)r7r=r'r?)rr7r=r?rrr
r#szBdb._set_stopinfocCs$|dur|jd}|�|||�dS)zxStop when the line with the lineno greater than the current one is
        reached or when returning from current frame.Nr)rHr#)rr/rPrrr
�	set_until"s
z
Bdb.set_untilcCs0|jr |jj}|r |js |j|_|�dd�dS)zStop after one line of code.N)rr5�f_tracer,r#)rZcaller_framerrr
�set_step*s

zBdb.set_stepcCs|�|d�dS)z2Stop on the next line in or below the given frame.N)r#r4rrr
�set_next6szBdb.set_nextcCs.|jjt@r|�|dd�n|�|j|�dS)z)Stop when returning from the given frame.Nr)r8r9r:r#r5r4rrr
�
set_return:szBdb.set_returncCsL|durt��j}|��|r4|j|_||_|j}q|��t�|j�dS)znStart debugging from frame.

        If frame is not specified, debugging starts from caller's frame.
        N)	�sys�	_getframer5r$r,rVr"rW�settracer4rrr
�	set_traceAs
z
Bdb.set_tracecCsH|�|jdd�|jsDt�d�t��j}|rD||jurD|`|j}q*dS)z�Stop only at breakpoints or when finished.

        If there are no breakpoints, set the system trace function to None.
        Nr)r#r"rrZr\r[r5rVr4rrr
�set_continuePs

zBdb.set_continuecCs"|j|_d|_d|_t�d�dS)zuSet quitting attribute to True.

        Raises BdbQuit exception in the next call to a dispatch_*() method.
        NT)r"r7r=r'rZr\�rrrr
�set_quit_szBdb.set_quitFc
Csb|�|�}ddl}|�||�}|s.d||fS|j�|g�}||vrN|�|�t|||||�}	dS)z�Set a new breakpoint for filename:lineno.

        If lineno doesn't exist for the filename, return an error message.
        The filename should be in canonical form.
        rNzLine %s:%d does not exist)rr �getliner�
setdefault�appendr)
rrrPrM�cond�funcnamer r%�listrQrrr
�	set_breakps

z
Bdb.set_breakcCs4||ftjvr|j|�|�|j|s0|j|=dS)aPrune breakpoints for filename:lineno.

        A list of breakpoints is maintained in the Bdb instance and in
        the Breakpoint class.  If a breakpoint in the Bdb instance no
        longer exists in the Breakpoint class, then it's removed from the
        Bdb instance.
        N)r�bplistr�remove�rrrPrrr
�
_prune_breaks�s
zBdb._prune_breakscCsj|�|�}||jvrd|S||j|vr6d||fStj||fdd�D]}|��qL|�||�dS)znDelete breakpoints for filename:lineno.

        If no breakpoints were set, return an error message.
        �There are no breakpoints in %szThere is no breakpoint at %s:%dN)rrrrh�deleteMerk)rrrPrQrrr
�clear_break�s


zBdb.clear_breakc
CsXz|�|�}Wn,ty:}zt|�WYd}~Sd}~00|��|�|j|j�dS)zxDelete a breakpoint by its index in Breakpoint.bpbynumber.

        If arg is invalid, return an error message.
        N)�get_bpbynumber�
ValueErrorrOrmrk�filer%)rr0rQ�errrrr
�clear_bpbynumber�szBdb.clear_bpbynumbercCsX|�|�}||jvrd|S|j|D]$}tj||f}|D]}|��q<q&|j|=dS)z`Delete all breakpoints in filename.

        If none were set, return an error message.
        rlN)rrrrhrm)rrr%ZblistrQrrr
�clear_all_file_breaks�s

zBdb.clear_all_file_breakscCs,|js
dStjD]}|r|��qi|_dS)z]Delete all existing breakpoints.

        If none were set, return an error message.
        zThere are no breakpointsN)rr�
bpbynumberrm)rrQrrr
�clear_all_breaks�s

zBdb.clear_all_breakscCs�|std��zt|�}Wn ty8td|�d�Yn0ztj|}Wn tyhtd|�d�Yn0|dur~td|��|S)z�Return a breakpoint by its index in Breakpoint.bybpnumber.

        For invalid arg values or if the breakpoint doesn't exist,
        raise a ValueError.
        zBreakpoint number expectedz Non-numeric breakpoint number %sNz!Breakpoint number %d out of rangezBreakpoint %d already deleted)rp�intrru�
IndexError)rr0rLrQrrr
ro�szBdb.get_bpbynumbercCs"|�|�}||jvo ||j|vS)z9Return True if there is a breakpoint for filename:lineno.�rrrjrrr
�	get_break�s

�z
Bdb.get_breakcCs4|�|�}||jvr0||j|vr0tj||fp2gS)znReturn all breakpoints for filename:lineno.

        If no breakpoints are set, return an empty list.
        )rrrrhrjrrr
�
get_breaks�s

���zBdb.get_breakscCs&|�|�}||jvr|j|SgSdS)zrReturn all lines with breakpoints for filename.

        If no breakpoints are set, return an empty list.
        Nry)rrrrr
�get_file_breaks�s


zBdb.get_file_breakscCs|jS)z$Return all breakpoints that are set.)rr_rrr
�get_all_breaks�szBdb.get_all_breakscCs�g}|r|j|ur|j}|durD|�||jf�||jur<qD|j}q|��tdt|�d�}|dur�|�|j|j	f�|j}q^|dur�tdt|�d�}||fS)z�Return a list of (frame, lineno) in a stack trace and a size.

        List starts with original calling frame, if there is one.
        Size may be number of frames above or below f.
        Nrr)
�tb_frame�tb_nextrcrHr"r5�reverse�max�len�	tb_lineno)r�f�t�stack�irrr
�	get_stack�s 
z
Bdb.get_stack�: cCs�ddl}ddl}|\}}|�|jj�}d||f}|jjrH||jj7}n|d7}|d7}d|jvr�|jd}	|d7}||�|	�7}|�|||j	�}
|
r�|||
�
�7}|S)a:Return a string with information about a stack entry.

        The stack entry frame_lineno is a (frame, lineno) tuple.  The
        return string contains the canonical filename, the function name
        or '<lambda>', the input arguments, the return value, and the
        line of code (if it exists).

        rNz%s(%r)z<lambda>z()Z
__return__z->)r �reprlibrr8rI�co_name�f_localsr.rarG�strip)rZframe_linenoZlprefixr r�r/rPr�s�rvr%rrr
�format_stack_entrys 	

zBdb.format_stack_entryc	Cs�|durddl}|j}|dur"|}|��t|t�r@t|dd�}t�|j�z8zt	|||�Wnt
ypYn0Wd|_t�d�nd|_t�d�0dS)z�Debug a statement executed via the exec() function.

        globals defaults to __main__.dict; locals defaults to globals.
        Nrz<string>�execT)�__main__�__dict__r$�
isinstancerO�compilerZr\r,r�rr')r�cmd�globals�localsr�rrr
�run5s"
�zBdb.runc	Cs�|durddl}|j}|dur"|}|��t�|j�zHz t|||�WWd|_t�d�StyjYn0Wd|_t�d�nd|_t�d�0dS)z�Debug an expression executed via the eval() function.

        globals defaults to __main__.dict; locals defaults to globals.
        NrT)	r�r�r$rZr\r,�evalr'r)r�exprr�r�r�rrr
�runevalKs$
��zBdb.runevalcCs|�|||�dS)z.For backwards-compatibility.  Defers to run().N)r�)rr�r�r�rrr
�runctx_sz
Bdb.runctxc	Osj|��t�|j�d}z:z||i|��}Wnty>Yn0Wd|_t�d�nd|_t�d�0|S)zWDebug a single function call.

        Return the result of the function call.
        NT)r$rZr\r,rr')r�func�args�kwds�resrrr
�runcallfs�zBdb.runcall)N)r)N)N)FNN)r�)NN)NN).rr	r
rrrr$r,r(r)r*r+rFr1r2rNr6r;r3r>rBr#rUrWrXrYr]r^r`rgrkrnrsrtrvrorzr{r|r}r�r�r�r�r�r�rrrr
rsZ
+	


�







rcCst���dS)z<Start debugging with a Bdb instance from the caller's frame.N)rr]rrrr
r]xsr]c@sZeZdZdZdZiZdgZddd�Zdd�Zd	d
�Z	dd�Z
dd
d�Zdd�Zdd�Z
dS)ra�Breakpoint class.

    Implements temporary breakpoints, ignore counts, disabling and
    (re)-enabling, and conditionals.

    Breakpoints are indexed by number through bpbynumber and by
    the (file, line) tuple using bplist.  The former points to a
    single instance of class Breakpoint.  The latter points to a
    list of such instances since there may be more than one
    breakpoint per line.

    When creating a breakpoint, its associated filename should be
    in canonical form.  If funcname is defined, a breakpoint hit will be
    counted when the first line of that function is executed.  A
    conditional breakpoint always counts a hit.
    rNFcCs�||_d|_||_||_||_||_d|_d|_d|_t	j
|_t	j
d7_
|j�
|�||f|jvr||j||f�
|�n|g|j||f<dS)NTrr)re�func_first_executable_linerqr%rMrd�enabled�ignore�hitsr�nextrLrurcrh)rrqr%rMrdrerrr
r�szBreakpoint.__init__cCs>|j|jf}d|j|j<|j|�|�|j|s:|j|=dS)z�Delete the breakpoint from the list associated to a file:line.

        If it is the last breakpoint in that position, it also deletes
        the entry for the file:line.
        N)rqr%rurLrhri)r�indexrrr
rm�s

zBreakpoint.deleteMecCs
d|_dS)zMark the breakpoint as enabled.TN�r�r_rrr
�enable�szBreakpoint.enablecCs
d|_dS)z Mark the breakpoint as disabled.FNr�r_rrr
�disable�szBreakpoint.disablecCs"|durtj}t|��|d�dS)z�Print the output of bpformat().

        The optional out argument directs where the output is sent
        and defaults to standard output.
        N)rq)rZ�stdoutr-�bpformat)r�outrrr
�bpprint�szBreakpoint.bpprintcCs�|jrd}nd}|jr |d}n|d}d|j||j|jf}|jrT|d|jf7}|jrj|d|jf7}|jr�|jdkr�d	}nd
}|d|j|f7}|S)z�Return a string with information about the breakpoint.

        The information includes the breakpoint number, temporary
        status, file:line position, break condition, number of times to
        ignore, and number of times hit.

        zdel  zkeep zyes  zno   z%-4dbreakpoint   %s at %s:%dz
	stop only if %sz
	ignore next %d hitsrr��z"
	breakpoint already hit %d time%s)rMr�rLrqr%rdr�r�)rZdispZretZssrrr
r��s&
�
zBreakpoint.bpformatcCsd|j|j|jfS)z1Return a condensed description of the breakpoint.zbreakpoint %s at %s:%s)rLrqr%r_rrr
�__str__�szBreakpoint.__str__)FNN)N)rr	r
rr�rhrurrmr�r�r�r�r�rrrr
r}s


rcCsN|js|j|jkrdSdS|jj|jkr,dS|js:|j|_|j|jkrJdSdS)aVReturn True if break should happen here.

    Whether a break should happen depends on the way that b (the breakpoint)
    was set.  If it was set via line number, check if b.line is the same as
    the one in the frame.  If it was set via function name, check if this is
    the right function and if it is on the first executable line.
    FT)rer%rHr8r�r�)�br/rrr
�
checkfuncname�sr�cCs�tj||f}|D]�}|jsqt||�s*q|jd7_|jsh|jdkrZ|jd8_qq�|dfSqzBt|j|j|j	�}|r�|jdkr�|jd8_n|dfWSWq|dfYS0qdS)aEDetermine which breakpoint for this file:line is to be acted upon.

    Called only if we know there is a breakpoint at this location.  Return
    the breakpoint that was triggered and a boolean that indicates if it is
    ok to delete a temporary breakpoint.  Return (None, None) if there is no
    matching breakpoint.
    rrTF)NN)
rrhr�r�r�rdr�r�rGr�)rqr%r/Z	possiblesr��valrrr
rKs*


rKc@s,eZdZdd�Zdd�Zdd�Zdd�Zd	S)
�TdbcCs |jj}|sd}td||�dS)N�???z+++ call)r8r�r-)rr/r��namerrr
r;Dsz
Tdb.user_callcCsTddl}|jj}|sd}|�|jj�}|�||j|j�}td||j|d|�	��dS)Nrr�z+++�:)
r r8r�rrIrarHrGr-r�)rr/r r��fnr%rrr
r3Hsz
Tdb.user_linecCstd|�dS)Nz
+++ return�r-)rr/Zretvalrrr
r>OszTdb.user_returncCstd|�|��dS)Nz
+++ exception)r-r^)rr/Z	exc_stuffrrr
rBQs
zTdb.user_exceptionN)rr	r
r;r3r>rBrrrr
r�Csr�cCs&td|d�t|d�}td|�dS)Nzfoo(�)�
zbar returned)r-�bar)�n�xrrr
�fooUsr�cCstd|d�|dS)Nzbar(r�r@r�)�arrr
r�Zsr�cCst�}|�d�dS)Nzimport bdb; bdb.foo(10))r�r�)r�rrr
�test^sr�)rrDrZr�inspectrrr�__all__r:�	Exceptionrrr]rr�rKr�r�r�r�rrrr
�<module>s(kt"0

Hacked By AnonymousFox1.0, Coded By AnonymousFox