Files
python-uncompyle6/test/simple_source/bug33/02_pos_args.py
2017-04-22 04:19:04 -04:00

7 lines
158 B
Python

# From Python 3.3.6 hmac.py
# Problem was getting wrong placement of positional args
digest_cons = lambda d=b'': 5
# Handle single kwarg
lambda *, d=0: None