§
íh@Èâ:¯ôã óŠ — d Z ddlmZ ddlmZ ddlmZ ddlmZmZmZ ddlmZ ej dhz Z
G d„ 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 ój — e Zd ZdZdZd„ ZdZ ej e¦ « Z dZ
ej e
¦ « Zd„ ZdS )ÚFixDictTa
power< head=any+
trailer< '.' method=('keys'|'items'|'values'|
'iterkeys'|'iteritems'|'itervalues'|
'viewkeys'|'viewitems'|'viewvalues') >
parens=trailer< '(' ')' >
tail=any*
>
c óþ — |d }|d d }|d }| j }|j }| d¦ « }| d¦ « } |s| r
|dd … }|dv sJ t |¦ « ¦ « ‚d „ |D ¦ « }d
„ |D ¦ « }| o| ||¦ « }
|t j |j t ¦ « t ||j
¬¦ « g¦ « |d ¦ « gz }t j |j |¦ « }|
s+| s)d
|_
t t |rdnd¦ « |g¦ « }|rt j |j |g|z ¦ « }|j
|_
|S )NÚheadÚmethodé Útailr
Úviewé )ÚkeysÚitemsÚvaluesc ó6 — g | ]}| ¦ « ‘ŒS © ©Úclone©Ú.0Úns ú=/opt/alt/python311/lib64/python3.11/lib2to3/fixes/fix_dict.pyú