Files
PowerToys/PythonHome/Lib/lib2to3/fixes/fix_dict.pyc

56 lines
3.6 KiB
Plaintext
Raw Normal View History

2014-07-09 18:15:23 +08:00
<03>
<EFBFBD>W`Sc@s<>dZddlmZddlmZddlmZddlmZddlmZm Z m
Z
m Z m Z m Z ddlmZejedg<00>BZd ejfd
<00><00>YZd S( sjFixer 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).
i(tpytree(tpatcomp(ttoken(t
fixer_base(tNametCalltLParentRParentArgListtDot(t
fixer_utiltitertFixDictcBsPeZeZdZd<00>ZdZeje<00>Z dZ
eje
<00>Z d<00>Z RS(s
power< head=any+
trailer< '.' method=('keys'|'items'|'values'|
'iterkeys'|'iteritems'|'itervalues'|
'viewkeys'|'viewitems'|'viewvalues') >
parens=trailer< '(' ')' >
tail=any*
>
cCs<>|d}|dd}|d}|j}|j}|jd<00>}|jd<00>} |s^| rk|d}n|dks<>tt|<00><00><00>g|D]}
|
j<00>^q<>}g|D]}
|
j<00>^q<>}| o<>|j||<00>} |tj|j t
<00>t |d |j <00>g<00>|d j<00>g} tj|j | <00>} | p?| srd | _ tt |r]dnd<00>| g<00>} n|r<>tj|j | g|<17>} n|j | _ | S(Ntheadtmethodittailuiteruviewiukeysuitemsuvaluestprefixtparensuulist(ukeysuitemsuvalues(tsymstvaluet
startswithtAssertionErrortreprtclonetin_special_contextRtNodettrailerR RRtpowerR(tselftnodetresultsR RRRt method_nametisitertisviewtntspecialtargstnew((s.\Lib\lib2to3\fixes\fix_dict.pyt transform7s4

       ' s3power< func=NAME trailer< '(' node=any ')' > any* >smfor_stmt< 'for' any 'in' node=any ':' any* >
| comp_for< 'for' any 'in' node=any any* >
cCs<>|jdkrtSi}|jjdk r<>|jj|jj|<00>r<>|d|kr<>|rm|djtkS|djtjkSn|s<>tS|j j|j|<00>o<>|d|kS(NRtfunc(
tparenttNonetFalsetp1tmatchRt iter_exemptR
tconsuming_callstp2(RRR R((s.\Lib\lib2to3\fixes\fix_dict.pyR[s( t__name__t
__module__tTruet BM_compatibletPATTERNR&tP1Rtcompile_patternR+tP2R/R(((s.\Lib\lib2to3\fixes\fix_dict.pyR *s
 N(t__doc__tRRtpgen2RRR
RRRRRR R.tsetR-tBaseFixR (((s.\Lib\lib2to3\fixes\fix_dict.pyt<module>s.