o
    bc                     @   sN   d Z ddlmZ ddlmZmZmZmZmZm	Z	 dZ
dZG dd dejZdS )	a  Adjust some old Python 2 idioms to their modern counterparts.

* Change some type comparisons to isinstance() calls:
    type(x) == T -> isinstance(x, T)
    type(x) is T -> isinstance(x, T)
    type(x) != T -> not isinstance(x, T)
    type(x) is not T -> not isinstance(x, T)

* Change "while 1:" into "while True:".

* Change both

    v = list(EXPR)
    v.sort()
    foo(v)

and the more general

    v = EXPR
    v.sort()
    foo(v)

into

    v = sorted(EXPR)
    foo(v)
   )
fixer_base)CallCommaNameNode	BlankLinesymsz0(n='!=' | '==' | 'is' | n=comp_op< 'is' 'not' >)z(power< 'type' trailer< '(' x=any ')' > >c                       sP   e Zd ZdZdeeeef Z fddZdd Zdd Z	d	d
 Z
dd Z  ZS )	FixIdiomsTa  
        isinstance=comparison< %s %s T=any >
        |
        isinstance=comparison< T=any %s %s >
        |
        while_stmt< 'while' while='1' ':' any+ >
        |
        sorted=any<
            any*
            simple_stmt<
              expr_stmt< id1=any '='
                         power< list='list' trailer< '(' (not arglist<any+>) any ')' > >
              >
              '\n'
            >
            sort=
            simple_stmt<
              power< id2=any
                     trailer< '.' 'sort' > trailer< '(' ')' >
              >
              '\n'
            >
            next=any*
        >
        |
        sorted=any<
            any*
            simple_stmt< expr_stmt< id1=any '=' expr=any > '\n' >
            sort=
            simple_stmt<
              power< id2=any
                     trailer< '.' 'sort' > trailer< '(' ')' >
              >
              '\n'
            >
            next=any*
        >
    c                    s8   t t| |}|rd|v r|d |d kr|S d S |S )Nsortedid1id2)superr	   match)selfnoder	__class__ //usr/lib/python3.10/lib2to3/fixes/fix_idioms.pyr   O   s   zFixIdioms.matchc                 C   sD   d|v r
|  ||S d|v r| ||S d|v r| ||S td)N
isinstancewhiler
   zInvalid match)transform_isinstancetransform_whiletransform_sortRuntimeError)r   r   resultsr   r   r   	transformZ   s   zFixIdioms.transformc                 C   sh   |d   }|d   }d|_d|_ttd|t |g}d|v r.d|_ttjtd|g}|j|_|S )NxT  r   nnot)cloneprefixr   r   r   r   r   not_test)r   r   r   r   r   testr   r   r   r   d   s   zFixIdioms.transform_isinstancec                 C   s    |d }| td|jd d S )Nr   Truer%   )replacer   r%   )r   r   r   oner   r   r   r   p   s   zFixIdioms.transform_whilec                 C   s  |d }|d }| d}| d}|r|td|jd n|r7| }d|_|ttd|g|jd ntd|  |j}d	|v r|r^|d	d
 |d
 jf}	d		|	|d
 _d S |j
scJ |jd u sjJ t }
|j
|
 |j|
u szJ |d	d
 |
_d S d S )Nsortnextlistexprr
   r)   r    zshould not have reached here
    )getr*   r   r%   r$   r   r   remove
rpartitionjoinparentnext_siblingr   append_child)r   r   r   	sort_stmt	next_stmt	list_callsimple_exprnewbtwnprefix_linesend_liner   r   r   r   t   s4   



zFixIdioms.transform_sort)__name__
__module____qualname__explicitTYPECMPPATTERNr   r   r   r   r   __classcell__r   r   r   r   r	   %   s    
%'
r	   N)__doc__r    r   
fixer_utilr   r   r   r   r   r   rF   rE   BaseFixr	   r   r   r   r   <module>   s     