Files
python-uncompyle6/test/simple_source/def/07_classparam.py
2016-05-07 23:32:59 -04:00

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