B
ˆ f° ã @ 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¡} |sD| rP|dd … }dd „ |D ƒ}d
d „ |D ƒ}| o|| ||¡}
|t |jtƒ t||j dg¡|d
¡ g }t |j|¡}|
sà| sàd
|_ tt|rÔdndƒ|gƒ}|røt |j|g| ¡}|j |_ |S )NÚheadÚmethodé Útailr Zviewé c S s g | ]}| ¡ ‘qS © )Úclone)Ú.0Únr r ú;/opt/alt/python37/lib64/python3.7/lib2to3/fixes/fix_dict.pyú