You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
7 lines
210 B
Python
7 lines
210 B
Python
# Tests Python 3:
|
|
# build_class ::= LOAD_BUILD_CLASS mkfunc expr call_function CALL_FUNCTION_3
|
|
|
|
from collections import namedtuple
|
|
class Event(namedtuple('Event', 'time, priority, action, argument')):
|
|
pass
|