HEX
Server: LiteSpeed
System: Linux kapuas.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: mirz4654 (1666)
PHP: 8.1.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: //opt/alt/python35/lib64/python3.5/lib2to3/fixes/__pycache__/fix_dict.cpython-35.pyc


�qc��@s�dZddlmZddlmZddlmZddlmZddlmZm	Z	m
Z
mZmZm
Z
ddlmZejdhBZGd	d
�d
ej�ZdS)ajFixer 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)�token)�
fixer_base)�Name�Call�LParen�RParen�ArgList�Dot)�
fixer_util�iterc@s^eZdZdZdZdd�ZdZeje�Z	dZ
eje
�Zdd�Zd	S)
�FixDictTa
    power< head=any+
         trailer< '.' method=('keys'|'items'|'values'|
                              'iterkeys'|'iteritems'|'itervalues'|
                              'viewkeys'|'viewitems'|'viewvalues') >
         parens=trailer< '(' ')' >
         tail=any*
    >
    c
Cs�|d}|dd}|d}|j}|j}|jd�}|jd�}	|s^|	rn|dd�}|dks�tt|���dd�|D�}d
d�|D�}|o�|j||�}
|tj|jt	�t
|d|j�g�|dj�g}tj|j
|�}|
p*|	sZd|_tt
|rHdnd�|g�}|r|tj|j
|g|�}|j|_|S)N�head�method��tailr
Zview��keys�items�valuescSsg|]}|j��qS�)�clone)�.0�nrr�;/opt/alt/python35/lib64/python3.5/lib2to3/fixes/fix_dict.py�
<listcomp>Bs	z%FixDict.transform.<locals>.<listcomp>cSsg|]}|j��qSr)r)rrrrrrCs	�prefixZparens��list)rrr)�syms�value�
startswith�AssertionError�repr�in_special_contextrZNodeZtrailerrrrrZpowerr)
�self�node�resultsrrrr Zmethod_name�isiterZisviewZspecial�args�newrrr�	transform7s4

				$zFixDict.transformz3power< func=NAME trailer< '(' node=any ')' > any* >zmfor_stmt< 'for' any 'in' node=any ':' any* >
            | comp_for< 'for' any 'in' node=any any* >
         cCs�|jdkrdSi}|jjdk	r�|jj|jj|�r�|d|kr�|rm|djtkS|djtjkS|s�dS|jj|j|�o�|d|kS)NFr'�func)�parent�p1�matchr!�iter_exemptr�consuming_calls�p2)r&r'r)r(rrrr%[szFixDict.in_special_contextN)
�__name__�
__module__�__qualname__Z
BM_compatibleZPATTERNr,ZP1rZcompile_patternr/ZP2r3r%rrrrr*s
rN)�__doc__rrrZpgen2rrrrrrr	r
rr2r1ZBaseFixrrrrr�<module>s.