Files
python-uncompyle6/test/simple_source/bug35/02_fn_varargs.py

6 lines
162 B
Python

# From python 3.4 pstats.py
# Bug was not adding *, since *args covers that. And getting stream=None
# without *
def __init__(self, *args, stream=None):
pass