You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 08:49:51 +08:00
6 lines
162 B
Python
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
|