404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@18.223.238.38: ~ $
3


 \ �@svdZddlmZddlmZddlmZmZmZdd�Z	dd�Z
d	d
�Zdd�Zd
d�Z
dd�ZGdd�dej�ZdS)a�Fixer for __metaclass__ = X -> (metaclass=X) methods.

   The various forms of classef (inherits nothing, inherits once, inherints
   many) don't parse the same in the CST so we look at ALL classes for
   a __metaclass__ and if we find one normalize the inherits to all be
   an arglist.

   For one-liner classes ('class X: pass') there is no indent/dedent so
   we normalize those into having a suite.

   Moving the __metaclass__ into the classdef can also cause the class
   body to be empty so there is some special casing for that as well.

   This fixer also tries very hard to keep original indenting and spacing
   in all those corner cases.

�)�
fixer_base)�token)�syms�Node�LeafcCsxxr|jD]h}|jtjkr t|�S|jtjkr|jr|jd}|jtjkr|jr|jd}t|t�r|j	dkrdSqWdS)z� we have to check the cls_node without changing it.
        There are two possibilities:
          1)  clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta')
          2)  clsdef => simple_stmt => expr_stmt => Leaf('__meta')
    ��
__metaclass__TF)
�children�typer�suite�
has_metaclass�simple_stmt�	expr_stmt�
isinstancer�value)�parent�node�	expr_nodeZ	left_side�r�3/usr/lib64/python3.6/lib2to3/fixes/fix_metaclass.pyrs



rcCs�x|jD]}|jtjkrdSqWx,t|j�D]\}}|jtjkr,Pq,Wtd��ttjg�}x:|j|dd�r�|j|d}|j	|j
��|j�q\W|j	|�|}dS)zf one-line classes don't get a suite in the parse tree so we add
        one to normalize the tree
    NzNo class suite and no ':'!�)r	r
rr�	enumerater�COLON�
ValueErrorr�append_child�clone�remove)�cls_noder�ir�	move_noderrr�fixup_parse_tree-s
r c
Cs�x(t|j�D]\}}|jtjkrPqWdS|j�ttjg�}ttj	|g�}x2|j|d�r~|j|}|j
|j��|j�qNW|j||�|jdjd}|jdjd}	|	j
|_
dS)z� if there is a semi-colon all the parts count as part of the same
        simple_stmt.  We just want the __metaclass__ part so we move
        everything after the semi-colon into its own simple_stmt node
    Nr)rr	r
r�SEMIrrrrr
rr�insert_child�prefix)
rrZ	stmt_nodeZsemi_indrZnew_exprZnew_stmtrZ	new_leaf1Z	old_leaf1rrr�fixup_simple_stmtGs
r$cCs*|jr&|jdjtjkr&|jdj�dS)Nr���r%)r	r
r�NEWLINEr)rrrr�remove_trailing_newline_sr'ccs�x$|jD]}|jtjkrPqWtd��x�tt|j��D]t\}}|jtjkr6|jr6|jd}|jtjkr6|jr6|jd}t	|t
�r6|jdkr6t|||�t
|�|||fVq6WdS)NzNo class suite!rr)r	r
rrr�listrr
rrrrr$r')rrrZsimple_noderZ	left_noderrr�
find_metasds



r)cCs�|jddd�}x|r.|j�}|jtjkrPqWxL|r||j�}t|t�rd|jtjkrd|jr`d|_dS|j	|jddd��q2WdS)z� If an INDENT is followed by a thing with a prefix then nuke the prefix
        Otherwise we get in trouble when removing __metaclass__ at suite start
    Nr�r%r%)
r	�popr
r�INDENTrr�DEDENTr#�extend)rZkidsrrrr�fixup_indent{sr/c@seZdZdZdZdd�ZdS)�FixMetaclassTz
    classdef<any*>
    cCsNt|�sdSt|�d}x"t|�D]\}}}|}|j�q"W|jdj}t|j�dkr�|jdjtjkrt|jd}n(|jdj	�}	t
tj|	g�}|jd|�n�t|j�dkr�t
tjg�}|jd|�nZt|j�dk�rt
tjg�}|jdt
tjd��|jd|�|jdt
tjd��ntd	��|jdjd}
d
|
_|
j}|j�r^|jt
tjd��d|
_nd
|
_|jd}|jtjk�s�t�d
|jd_d
|jd_|j|�t|�|j�s�|j�t
|d�}
||
_|j|
�|jt
tjd��nbt|j�dk�rJ|jdjtjk�rJ|jdjtjk�rJt
|d�}
|jd|
�|jdt
tjd��dS)Nr����r�)�(zUnexpected class definition�	metaclass�,� r*r�pass�
���r%r%r%)rr r)rr	r
�lenr�arglistrrZ	set_childr"rr�RPAR�LPARrrr#r�COMMAr�AssertionErrorr/r&r,r-)�selfrZresultsZlast_metaclassrrZstmtZ	text_typer>rZmeta_txtZorig_meta_prefixrZ	pass_leafrrr�	transform�s`




zFixMetaclass.transformN)�__name__�
__module__�__qualname__Z
BM_compatibleZPATTERNrDrrrrr0�sr0N)�__doc__r*rZpygramrZ
fixer_utilrrrrr r$r'r)r/ZBaseFixr0rrrr�<module>s

Filemanager

Name Type Size Permission Actions
__init__.cpython-36.opt-1.pyc File 129 B 0644
__init__.cpython-36.opt-2.pyc File 129 B 0644
__init__.cpython-36.pyc File 129 B 0644
fix_apply.cpython-36.opt-1.pyc File 1.61 KB 0644
fix_apply.cpython-36.opt-2.pyc File 1.52 KB 0644
fix_apply.cpython-36.pyc File 1.64 KB 0644
fix_asserts.cpython-36.opt-1.pyc File 1.22 KB 0644
fix_asserts.cpython-36.opt-2.pyc File 1.15 KB 0644
fix_asserts.cpython-36.pyc File 1.22 KB 0644
fix_basestring.cpython-36.opt-1.pyc File 642 B 0644
fix_basestring.cpython-36.opt-2.pyc File 597 B 0644
fix_basestring.cpython-36.pyc File 642 B 0644
fix_buffer.cpython-36.opt-1.pyc File 787 B 0644
fix_buffer.cpython-36.opt-2.pyc File 718 B 0644
fix_buffer.cpython-36.pyc File 787 B 0644
fix_dict.cpython-36.opt-1.pyc File 3.15 KB 0644
fix_dict.cpython-36.opt-2.pyc File 2.28 KB 0644
fix_dict.cpython-36.pyc File 3.23 KB 0644
fix_except.cpython-36.opt-1.pyc File 2.73 KB 0644
fix_except.cpython-36.opt-2.pyc File 2.3 KB 0644
fix_except.cpython-36.pyc File 2.73 KB 0644
fix_exec.cpython-36.opt-1.pyc File 1.08 KB 0644
fix_exec.cpython-36.opt-2.pyc File 936 B 0644
fix_exec.cpython-36.pyc File 1.1 KB 0644
fix_execfile.cpython-36.opt-1.pyc File 1.62 KB 0644
fix_execfile.cpython-36.opt-2.pyc File 1.49 KB 0644
fix_execfile.cpython-36.pyc File 1.64 KB 0644
fix_exitfunc.cpython-36.opt-1.pyc File 2.22 KB 0644
fix_exitfunc.cpython-36.opt-2.pyc File 2.15 KB 0644
fix_exitfunc.cpython-36.pyc File 2.22 KB 0644
fix_filter.cpython-36.opt-1.pyc File 2.29 KB 0644
fix_filter.cpython-36.opt-2.pyc File 1.84 KB 0644
fix_filter.cpython-36.pyc File 2.29 KB 0644
fix_funcattrs.cpython-36.opt-1.pyc File 953 B 0644
fix_funcattrs.cpython-36.opt-2.pyc File 885 B 0644
fix_funcattrs.cpython-36.pyc File 953 B 0644
fix_future.cpython-36.opt-1.pyc File 763 B 0644
fix_future.cpython-36.opt-2.pyc File 660 B 0644
fix_future.cpython-36.pyc File 763 B 0644
fix_getcwdu.cpython-36.opt-1.pyc File 767 B 0644
fix_getcwdu.cpython-36.opt-2.pyc File 701 B 0644
fix_getcwdu.cpython-36.pyc File 767 B 0644
fix_has_key.cpython-36.opt-1.pyc File 2.8 KB 0644
fix_has_key.cpython-36.opt-2.pyc File 2.25 KB 0644
fix_has_key.cpython-36.pyc File 2.83 KB 0644
fix_idioms.cpython-36.opt-1.pyc File 3.72 KB 0644
fix_idioms.cpython-36.opt-2.pyc File 3.23 KB 0644
fix_idioms.cpython-36.pyc File 3.79 KB 0644
fix_import.cpython-36.opt-1.pyc File 2.7 KB 0644
fix_import.cpython-36.opt-2.pyc File 2.4 KB 0644
fix_import.cpython-36.pyc File 2.7 KB 0644
fix_imports.cpython-36.opt-1.pyc File 4.23 KB 0644
fix_imports.cpython-36.opt-2.pyc File 4.16 KB 0644
fix_imports.cpython-36.pyc File 4.23 KB 0644
fix_imports2.cpython-36.opt-1.pyc File 527 B 0644
fix_imports2.cpython-36.opt-2.pyc File 426 B 0644
fix_imports2.cpython-36.pyc File 527 B 0644
fix_input.cpython-36.opt-1.pyc File 929 B 0644
fix_input.cpython-36.opt-2.pyc File 860 B 0644
fix_input.cpython-36.pyc File 929 B 0644
fix_intern.cpython-36.opt-1.pyc File 1.11 KB 0644
fix_intern.cpython-36.opt-2.pyc File 1.05 KB 0644
fix_intern.cpython-36.pyc File 1.11 KB 0644
fix_isinstance.cpython-36.opt-1.pyc File 1.5 KB 0644
fix_isinstance.cpython-36.opt-2.pyc File 1.19 KB 0644
fix_isinstance.cpython-36.pyc File 1.5 KB 0644
fix_itertools.cpython-36.opt-1.pyc File 1.5 KB 0644
fix_itertools.cpython-36.opt-2.pyc File 1.15 KB 0644
fix_itertools.cpython-36.pyc File 1.5 KB 0644
fix_itertools_imports.cpython-36.opt-1.pyc File 1.52 KB 0644
fix_itertools_imports.cpython-36.opt-2.pyc File 1.44 KB 0644
fix_itertools_imports.cpython-36.pyc File 1.55 KB 0644
fix_long.cpython-36.opt-1.pyc File 684 B 0644
fix_long.cpython-36.opt-2.pyc File 620 B 0644
fix_long.cpython-36.pyc File 684 B 0644
fix_map.cpython-36.opt-1.pyc File 3 KB 0644
fix_map.cpython-36.opt-2.pyc File 2.22 KB 0644
fix_map.cpython-36.pyc File 3 KB 0644
fix_metaclass.cpython-36.opt-1.pyc File 5.19 KB 0644
fix_metaclass.cpython-36.opt-2.pyc File 3.84 KB 0644
fix_metaclass.cpython-36.pyc File 5.23 KB 0644
fix_methodattrs.cpython-36.opt-1.pyc File 915 B 0644
fix_methodattrs.cpython-36.opt-2.pyc File 839 B 0644
fix_methodattrs.cpython-36.pyc File 915 B 0644
fix_ne.cpython-36.opt-1.pyc File 786 B 0644
fix_ne.cpython-36.opt-2.pyc File 741 B 0644
fix_ne.cpython-36.pyc File 786 B 0644
fix_next.cpython-36.opt-1.pyc File 2.94 KB 0644
fix_next.cpython-36.opt-2.pyc File 2.88 KB 0644
fix_next.cpython-36.pyc File 2.97 KB 0644
fix_nonzero.cpython-36.opt-1.pyc File 902 B 0644
fix_nonzero.cpython-36.opt-2.pyc File 843 B 0644
fix_nonzero.cpython-36.pyc File 902 B 0644
fix_numliterals.cpython-36.opt-1.pyc File 1008 B 0644
fix_numliterals.cpython-36.opt-2.pyc File 946 B 0644
fix_numliterals.cpython-36.pyc File 1008 B 0644
fix_operator.cpython-36.opt-1.pyc File 4.12 KB 0644
fix_operator.cpython-36.opt-2.pyc File 3.64 KB 0644
fix_operator.cpython-36.pyc File 4.12 KB 0644
fix_paren.cpython-36.opt-1.pyc File 1.34 KB 0644
fix_paren.cpython-36.opt-2.pyc File 1.21 KB 0644
fix_paren.cpython-36.pyc File 1.34 KB 0644
fix_print.cpython-36.opt-1.pyc File 2.18 KB 0644
fix_print.cpython-36.opt-2.pyc File 1.9 KB 0644
fix_print.cpython-36.pyc File 2.25 KB 0644
fix_raise.cpython-36.opt-1.pyc File 2.18 KB 0644
fix_raise.cpython-36.opt-2.pyc File 1.57 KB 0644
fix_raise.cpython-36.pyc File 2.18 KB 0644
fix_raw_input.cpython-36.opt-1.pyc File 774 B 0644
fix_raw_input.cpython-36.opt-2.pyc File 707 B 0644
fix_raw_input.cpython-36.pyc File 774 B 0644
fix_reduce.cpython-36.opt-1.pyc File 1.08 KB 0644
fix_reduce.cpython-36.opt-2.pyc File 979 B 0644
fix_reduce.cpython-36.pyc File 1.08 KB 0644
fix_reload.cpython-36.opt-1.pyc File 1.11 KB 0644
fix_reload.cpython-36.opt-2.pyc File 1.05 KB 0644
fix_reload.cpython-36.pyc File 1.11 KB 0644
fix_renames.cpython-36.opt-1.pyc File 1.93 KB 0644
fix_renames.cpython-36.opt-2.pyc File 1.85 KB 0644
fix_renames.cpython-36.pyc File 1.93 KB 0644
fix_repr.cpython-36.opt-1.pyc File 824 B 0644
fix_repr.cpython-36.opt-2.pyc File 760 B 0644
fix_repr.cpython-36.pyc File 824 B 0644
fix_set_literal.cpython-36.opt-1.pyc File 1.63 KB 0644
fix_set_literal.cpython-36.opt-2.pyc File 1.55 KB 0644
fix_set_literal.cpython-36.pyc File 1.63 KB 0644
fix_standarderror.cpython-36.opt-1.pyc File 699 B 0644
fix_standarderror.cpython-36.opt-2.pyc File 645 B 0644
fix_standarderror.cpython-36.pyc File 699 B 0644
fix_sys_exc.cpython-36.opt-1.pyc File 1.35 KB 0644
fix_sys_exc.cpython-36.opt-2.pyc File 1.18 KB 0644
fix_sys_exc.cpython-36.pyc File 1.35 KB 0644
fix_throw.cpython-36.opt-1.pyc File 1.74 KB 0644
fix_throw.cpython-36.opt-2.pyc File 1.51 KB 0644
fix_throw.cpython-36.pyc File 1.74 KB 0644
fix_tuple_params.cpython-36.opt-1.pyc File 4.47 KB 0644
fix_tuple_params.cpython-36.opt-2.pyc File 4.14 KB 0644
fix_tuple_params.cpython-36.pyc File 4.47 KB 0644
fix_types.cpython-36.opt-1.pyc File 1.77 KB 0644
fix_types.cpython-36.opt-2.pyc File 1.3 KB 0644
fix_types.cpython-36.pyc File 1.77 KB 0644
fix_unicode.cpython-36.opt-1.pyc File 1.49 KB 0644
fix_unicode.cpython-36.opt-2.pyc File 1.31 KB 0644
fix_unicode.cpython-36.pyc File 1.49 KB 0644
fix_urllib.cpython-36.opt-1.pyc File 5.83 KB 0644
fix_urllib.cpython-36.opt-2.pyc File 5.28 KB 0644
fix_urllib.cpython-36.pyc File 5.83 KB 0644
fix_ws_comma.cpython-36.opt-1.pyc File 1.08 KB 0644
fix_ws_comma.cpython-36.opt-2.pyc File 916 B 0644
fix_ws_comma.cpython-36.pyc File 1.08 KB 0644
fix_xrange.cpython-36.opt-1.pyc File 2.46 KB 0644
fix_xrange.cpython-36.opt-2.pyc File 2.4 KB 0644
fix_xrange.cpython-36.pyc File 2.46 KB 0644
fix_xreadlines.cpython-36.opt-1.pyc File 1.07 KB 0644
fix_xreadlines.cpython-36.opt-2.pyc File 967 B 0644
fix_xreadlines.cpython-36.pyc File 1.07 KB 0644
fix_zip.cpython-36.opt-1.pyc File 1.52 KB 0644
fix_zip.cpython-36.opt-2.pyc File 1.2 KB 0644
fix_zip.cpython-36.pyc File 1.52 KB 0644