[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.142.198.148: ~ $
�

�f��d�dZddlmZddlmZmZmZmZmZm	Z	dZ
dZGd�dej��Z
dS)	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	�X��eZdZdZde�de�de�de�d�	Z�fd�Zd�Zd�Z	d	�Z
d
�Z�xZS)�	FixIdiomsTz 
        isinstance=comparison< � z8 T=any >
        |
        isinstance=comparison< T=any aX >
        |
        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���tt|���|��}|rd|vr|d|dkr|SdS|S)N�sorted�id1�id2)�superr�match)�self�node�r�	__class__s   ��?/opt/alt/python311/lib64/python3.11/lib2to3/fixes/fix_idioms.pyrzFixIdioms.matchOsT����)�T�"�"�(�(��.�.��
�	��Q�����x�1�U�8�#�#����4���c��d|vr|�||��Sd|vr|�||��Sd|vr|�||��Std���)N�
isinstance�whilerz
Invalid match)�transform_isinstance�transform_while�transform_sort�RuntimeError)rr�resultss   r�	transformzFixIdioms.transformZss���7�"�"��,�,�T�7�;�;�;�
��
�
��'�'��g�6�6�6�
��
 �
 ��&�&�t�W�5�5�5���/�/�/rc�b�|d���}|d���}d|_d|_ttd��|t	��|g��}d|vr0d|_ttjtd��|g��}|j|_|S)N�x�T�rr�n�not)�clone�prefixrrrrr	�not_test)rrr r#r$�tests      rrzFixIdioms.transform_isinstanceds����C�L��� � ���C�L��� � ���������D��&�&��E�G�G�Q��8�8���'�>�>��D�K���
��U���T�':�;�;�D��k����rc�h�|d}|�td|j�����dS)Nr�True�r))�replacerr))rrr �ones    rrzFixIdioms.transform_whileps3���g������D���
�3�3�3�4�4�4�4�4rc�@�|d}|d}|�d��}|�d��}|r*|�td|j�����ne|rT|���}d|_|�ttd��|g|j�����nt
d���|���|j}d	|vr�|rJ|�d	��d
|d
jf}	d	�	|	��|d
_dS|j
sJ�|j�J�t��}
|j
�
|
��|j|
usJ�|�d	��d
|
_dSdS)N�sort�next�list�exprrr.r%zshould not have reached here�
�)�getr/rr)r(rr�remove�
rpartition�join�parent�next_siblingr�append_child)rrr �	sort_stmt�	next_stmt�	list_call�simple_expr�new�btwn�prefix_lines�end_lines           rrzFixIdioms.transform_sortts����F�O�	��F�O�	��K�K��'�'�	��k�k�&�)�)���	?����d�8�I�4D�E�E�E�F�F�F�F�
�	?��#�#�%�%�C��C�J�����T�(�^�^�c�U�,7�,>�!@�!@�!@�
A�
A�
A�
A��=�>�>�>�����������4�<�<��
;�!%���� 5� 5�a� 8�)�A�,�:M�N��&*�i�i��&=�&=�	�!��#�#�#� �'�'�'�'� �-�5�5�5�$�;�;��� �-�-�h�7�7�7� �-��9�9�9�9�#'�/�/�$�"7�"7��":�����!�<r)
�__name__�
__module__�__qualname__�explicit�TYPE�CMP�PATTERNrr!rrr�
__classcell__)rs@rrr%s���������H�H�N�4�4����c�c�c�4�4�4�K%!�G�N	�	�	�	�	�0�0�0�
�
�
�5�5�5�$;�$;�$;�$;�$;�$;�$;rrN)�__doc__r%r�
fixer_utilrrrrrr	rLrK�BaseFixr�rr�<module>rSs�����<������A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�8��1��s;�s;�s;�s;�s;�
�"�s;�s;�s;�s;�s;r

Filemanager

Name Type Size Permission Actions
__init__.cpython-311.opt-1.pyc File 170 B 0644
__init__.cpython-311.opt-2.pyc File 170 B 0644
__init__.cpython-311.pyc File 170 B 0644
fix_apply.cpython-311.opt-1.pyc File 2.76 KB 0644
fix_apply.cpython-311.opt-2.pyc File 2.67 KB 0644
fix_apply.cpython-311.pyc File 2.77 KB 0644
fix_asserts.cpython-311.opt-1.pyc File 1.72 KB 0644
fix_asserts.cpython-311.opt-2.pyc File 1.65 KB 0644
fix_asserts.cpython-311.pyc File 1.72 KB 0644
fix_basestring.cpython-311.opt-1.pyc File 886 B 0644
fix_basestring.cpython-311.opt-2.pyc File 842 B 0644
fix_basestring.cpython-311.pyc File 886 B 0644
fix_buffer.cpython-311.opt-1.pyc File 1.08 KB 0644
fix_buffer.cpython-311.opt-2.pyc File 1.01 KB 0644
fix_buffer.cpython-311.pyc File 1.08 KB 0644
fix_dict.cpython-311.opt-1.pyc File 4.81 KB 0644
fix_dict.cpython-311.opt-2.pyc File 3.94 KB 0644
fix_dict.cpython-311.pyc File 4.93 KB 0644
fix_except.cpython-311.opt-1.pyc File 4.69 KB 0644
fix_except.cpython-311.opt-2.pyc File 4.25 KB 0644
fix_except.cpython-311.pyc File 4.69 KB 0644
fix_exec.cpython-311.opt-1.pyc File 1.78 KB 0644
fix_exec.cpython-311.opt-2.pyc File 1.62 KB 0644
fix_exec.cpython-311.pyc File 1.8 KB 0644
fix_execfile.cpython-311.opt-1.pyc File 3.12 KB 0644
fix_execfile.cpython-311.opt-2.pyc File 3 KB 0644
fix_execfile.cpython-311.pyc File 3.14 KB 0644
fix_exitfunc.cpython-311.opt-1.pyc File 3.86 KB 0644
fix_exitfunc.cpython-311.opt-2.pyc File 3.79 KB 0644
fix_exitfunc.cpython-311.pyc File 3.86 KB 0644
fix_filter.cpython-311.opt-1.pyc File 3.97 KB 0644
fix_filter.cpython-311.opt-2.pyc File 3.52 KB 0644
fix_filter.cpython-311.pyc File 3.97 KB 0644
fix_funcattrs.cpython-311.opt-1.pyc File 1.29 KB 0644
fix_funcattrs.cpython-311.opt-2.pyc File 1.23 KB 0644
fix_funcattrs.cpython-311.pyc File 1.29 KB 0644
fix_future.cpython-311.opt-1.pyc File 1023 B 0644
fix_future.cpython-311.opt-2.pyc File 919 B 0644
fix_future.cpython-311.pyc File 1023 B 0644
fix_getcwdu.cpython-311.opt-1.pyc File 1.06 KB 0644
fix_getcwdu.cpython-311.opt-2.pyc File 1016 B 0644
fix_getcwdu.cpython-311.pyc File 1.06 KB 0644
fix_has_key.cpython-311.opt-1.pyc File 4.36 KB 0644
fix_has_key.cpython-311.opt-2.pyc File 3.8 KB 0644
fix_has_key.cpython-311.pyc File 4.37 KB 0644
fix_idioms.cpython-311.opt-1.pyc File 5.83 KB 0644
fix_idioms.cpython-311.opt-2.pyc File 5.35 KB 0644
fix_idioms.cpython-311.pyc File 5.95 KB 0644
fix_import.cpython-311.opt-1.pyc File 4.7 KB 0644
fix_import.cpython-311.opt-2.pyc File 4.4 KB 0644
fix_import.cpython-311.pyc File 4.7 KB 0644
fix_imports.cpython-311.opt-1.pyc File 6.8 KB 0644
fix_imports.cpython-311.opt-2.pyc File 6.74 KB 0644
fix_imports.cpython-311.pyc File 6.8 KB 0644
fix_imports2.cpython-311.opt-1.pyc File 700 B 0644
fix_imports2.cpython-311.opt-2.pyc File 598 B 0644
fix_imports2.cpython-311.pyc File 700 B 0644
fix_input.cpython-311.opt-1.pyc File 1.38 KB 0644
fix_input.cpython-311.opt-2.pyc File 1.31 KB 0644
fix_input.cpython-311.pyc File 1.38 KB 0644
fix_intern.cpython-311.opt-1.pyc File 1.49 KB 0644
fix_intern.cpython-311.opt-2.pyc File 1.42 KB 0644
fix_intern.cpython-311.pyc File 1.49 KB 0644
fix_isinstance.cpython-311.opt-1.pyc File 2.44 KB 0644
fix_isinstance.cpython-311.opt-2.pyc File 2.13 KB 0644
fix_isinstance.cpython-311.pyc File 2.44 KB 0644
fix_itertools.cpython-311.opt-1.pyc File 2.1 KB 0644
fix_itertools.cpython-311.opt-2.pyc File 1.75 KB 0644
fix_itertools.cpython-311.pyc File 2.1 KB 0644
fix_itertools_imports.cpython-311.opt-1.pyc File 2.66 KB 0644
fix_itertools_imports.cpython-311.opt-2.pyc File 2.58 KB 0644
fix_itertools_imports.cpython-311.pyc File 2.73 KB 0644
fix_long.cpython-311.opt-1.pyc File 993 B 0644
fix_long.cpython-311.opt-2.pyc File 928 B 0644
fix_long.cpython-311.pyc File 993 B 0644
fix_map.cpython-311.opt-1.pyc File 4.73 KB 0644
fix_map.cpython-311.opt-2.pyc File 3.95 KB 0644
fix_map.cpython-311.pyc File 4.73 KB 0644
fix_metaclass.cpython-311.opt-1.pyc File 10.45 KB 0644
fix_metaclass.cpython-311.opt-2.pyc File 9.13 KB 0644
fix_metaclass.cpython-311.pyc File 10.52 KB 0644
fix_methodattrs.cpython-311.opt-1.pyc File 1.27 KB 0644
fix_methodattrs.cpython-311.opt-2.pyc File 1.19 KB 0644
fix_methodattrs.cpython-311.pyc File 1.27 KB 0644
fix_ne.cpython-311.opt-1.pyc File 1.11 KB 0644
fix_ne.cpython-311.opt-2.pyc File 1.06 KB 0644
fix_ne.cpython-311.pyc File 1.11 KB 0644
fix_next.cpython-311.opt-1.pyc File 5.1 KB 0644
fix_next.cpython-311.opt-2.pyc File 5.04 KB 0644
fix_next.cpython-311.pyc File 5.12 KB 0644
fix_nonzero.cpython-311.opt-1.pyc File 1.19 KB 0644
fix_nonzero.cpython-311.opt-2.pyc File 1.13 KB 0644
fix_nonzero.cpython-311.pyc File 1.19 KB 0644
fix_numliterals.cpython-311.opt-1.pyc File 1.59 KB 0644
fix_numliterals.cpython-311.opt-2.pyc File 1.53 KB 0644
fix_numliterals.cpython-311.pyc File 1.59 KB 0644
fix_operator.cpython-311.opt-1.pyc File 6.12 KB 0644
fix_operator.cpython-311.opt-2.pyc File 5.65 KB 0644
fix_operator.cpython-311.pyc File 6.12 KB 0644
fix_paren.cpython-311.opt-1.pyc File 1.75 KB 0644
fix_paren.cpython-311.opt-2.pyc File 1.62 KB 0644
fix_paren.cpython-311.pyc File 1.75 KB 0644
fix_print.cpython-311.opt-1.pyc File 3.88 KB 0644
fix_print.cpython-311.opt-2.pyc File 3.6 KB 0644
fix_print.cpython-311.pyc File 4.05 KB 0644
fix_raise.cpython-311.opt-1.pyc File 3.69 KB 0644
fix_raise.cpython-311.opt-2.pyc File 3.08 KB 0644
fix_raise.cpython-311.pyc File 3.69 KB 0644
fix_raw_input.cpython-311.opt-1.pyc File 1.06 KB 0644
fix_raw_input.cpython-311.opt-2.pyc File 1020 B 0644
fix_raw_input.cpython-311.pyc File 1.06 KB 0644
fix_reduce.cpython-311.opt-1.pyc File 1.32 KB 0644
fix_reduce.cpython-311.opt-2.pyc File 1.2 KB 0644
fix_reduce.cpython-311.pyc File 1.32 KB 0644
fix_reload.cpython-311.opt-1.pyc File 1.5 KB 0644
fix_reload.cpython-311.opt-2.pyc File 1.43 KB 0644
fix_reload.cpython-311.pyc File 1.5 KB 0644
fix_renames.cpython-311.opt-1.pyc File 3.29 KB 0644
fix_renames.cpython-311.opt-2.pyc File 3.21 KB 0644
fix_renames.cpython-311.pyc File 3.29 KB 0644
fix_repr.cpython-311.opt-1.pyc File 1.22 KB 0644
fix_repr.cpython-311.opt-2.pyc File 1.16 KB 0644
fix_repr.cpython-311.pyc File 1.22 KB 0644
fix_set_literal.cpython-311.opt-1.pyc File 2.7 KB 0644
fix_set_literal.cpython-311.opt-2.pyc File 2.63 KB 0644
fix_set_literal.cpython-311.pyc File 2.7 KB 0644
fix_standarderror.cpython-311.opt-1.pyc File 947 B 0644
fix_standarderror.cpython-311.opt-2.pyc File 894 B 0644
fix_standarderror.cpython-311.pyc File 947 B 0644
fix_sys_exc.cpython-311.opt-1.pyc File 2.2 KB 0644
fix_sys_exc.cpython-311.opt-2.pyc File 2.03 KB 0644
fix_sys_exc.cpython-311.pyc File 2.2 KB 0644
fix_throw.cpython-311.opt-1.pyc File 2.84 KB 0644
fix_throw.cpython-311.opt-2.pyc File 2.61 KB 0644
fix_throw.cpython-311.pyc File 2.84 KB 0644
fix_tuple_params.cpython-311.opt-1.pyc File 8.47 KB 0644
fix_tuple_params.cpython-311.opt-2.pyc File 8.14 KB 0644
fix_tuple_params.cpython-311.pyc File 8.47 KB 0644
fix_types.cpython-311.opt-1.pyc File 2.46 KB 0644
fix_types.cpython-311.opt-2.pyc File 2 KB 0644
fix_types.cpython-311.pyc File 2.46 KB 0644
fix_unicode.cpython-311.opt-1.pyc File 2.49 KB 0644
fix_unicode.cpython-311.opt-2.pyc File 2.31 KB 0644
fix_unicode.cpython-311.pyc File 2.49 KB 0644
fix_urllib.cpython-311.opt-1.pyc File 10.19 KB 0644
fix_urllib.cpython-311.opt-2.pyc File 9.67 KB 0644
fix_urllib.cpython-311.pyc File 10.19 KB 0644
fix_ws_comma.cpython-311.opt-1.pyc File 1.61 KB 0644
fix_ws_comma.cpython-311.opt-2.pyc File 1.43 KB 0644
fix_ws_comma.cpython-311.pyc File 1.61 KB 0644
fix_xrange.cpython-311.opt-1.pyc File 4.12 KB 0644
fix_xrange.cpython-311.opt-2.pyc File 4.06 KB 0644
fix_xrange.cpython-311.pyc File 4.12 KB 0644
fix_xreadlines.cpython-311.opt-1.pyc File 1.57 KB 0644
fix_xreadlines.cpython-311.opt-2.pyc File 1.45 KB 0644
fix_xreadlines.cpython-311.pyc File 1.57 KB 0644
fix_zip.cpython-311.opt-1.pyc File 2.31 KB 0644
fix_zip.cpython-311.opt-2.pyc File 1.99 KB 0644
fix_zip.cpython-311.pyc File 2.31 KB 0644