2023-07-06 16:39:42 +02:00
|
|
|
# flake8: noqa: F401, F403
|
2023-05-20 23:56:23 +02:00
|
|
|
import warnings
|
|
|
|
|
|
|
|
from ..compat.compat_utils import passthrough_module
|
|
|
|
|
|
|
|
# XXX: Implement this the same way as other DeprecationWarnings without circular import
|
|
|
|
passthrough_module(__name__, '._legacy', callback=lambda attr: warnings.warn(
|
|
|
|
DeprecationWarning(f'{__name__}.{attr} is deprecated'), stacklevel=5))
|
|
|
|
del passthrough_module
|
|
|
|
|
|
|
|
# isort: off
|
|
|
|
from .traversal import *
|
|
|
|
from ._utils import *
|
|
|
|
from ._utils import _configuration_args, _get_exe_version_output
|
|
|
|
from ._deprecated import *
|