Files
python-uncompyle6/test/simple_source/def/10_class_deco.py
2019-12-21 22:57:59 -05:00

17 lines
304 B
Python

# From 3.4 tracemalloc.py
from functools import total_ordering
@total_ordering
class Frame:
pass
# From 3.7 test/test_c_locale_coercion.py
# Bug is multiple decorators
@test
@unittest
class LocaleCoercionTests():
# Test implicit reconfiguration of the environment during CLI startup
pass