PATH:
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
aenum
from inspect import getfullargspec as _getfullargspec __all__ = [ 'getargspec', 'raise_with_traceback', 'raise_from_none', ] def getargspec(method): args, varargs, keywords, defaults, _, _, _ = _getfullargspec(method) return args, varargs, keywords, defaults def raise_with_traceback(exc, tb): raise exc.with_traceback(tb) def raise_from_none(exc): raise exc from None
[-] _common.py
[edit]
[+]
__pycache__
[-] __init__.py
[edit]
[-] _tuple.py
[edit]
[-] _constant.py
[edit]
[-] test_v37.py
[edit]
[-] test_v3.py
[edit]
[-] _enum.py
[edit]
[-] _py3.py
[edit]
[-] test.py
[edit]
[+]
..
[+]
doc
[-] _py2.py
[edit]
[-] CHANGES
[edit]
[-] LICENSE
[edit]