The assertion reinterpretation is an old backwards compatibility mode which was no longer being maintained on feature-parity with the assertion rewriting mode. It was also responsible for some dubious patching of builtins and test with side-effects would suddenly start passing. Since re-writing has been the default for a long time and plugins are now also re-written it is time to retire reinterpretation.
10 lines
345 B
Python
10 lines
345 B
Python
""" python inspection/code generation API """
|
|
from .code import Code # noqa
|
|
from .code import ExceptionInfo # noqa
|
|
from .code import Frame # noqa
|
|
from .code import Traceback # noqa
|
|
from .code import getrawcode # noqa
|
|
from .source import Source # noqa
|
|
from .source import compile_ as compile # noqa
|
|
from .source import getfslineno # noqa
|