Files
python-uncompyle6/test/simple_source/bug35/01_map_unpack.py
2017-04-15 22:34:56 -04:00

7 lines
166 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}}
[*[]]