Files
python-uncompyle6/test/simple_source/bug35/01_map_unpack.py
2017-05-02 05:51:48 -04:00

10 lines
225 B
Python

# Python 3.5+ PEP 448 - Additional Unpacking Generalizations for dictionaries
{**{}}
{**{'a': 1, 'b': 2}}
{'x': 1, **{'y': 2}}
# {'c': 1, {'d': 2}, **{'e': 3}}
[*[]]
{**{0:0 for a in b}}
## {**{}, **{}}
## {**{}, **{}, **{}}