You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
17 lines
304 B
Python
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
|