You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
7 lines
166 B
Python
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}}
|
|
[*[]]
|