Spaces:
Runtime error
Runtime error
File size: 330 Bytes
1c60c6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import warnings
from pandas.util._exceptions import find_stack_level
from pandas._testing import * # noqa:F401,F403,PDF014
warnings.warn(
(
"pandas.util.testing is deprecated. Use the functions in the "
"public API at pandas.testing instead."
),
FutureWarning,
stacklevel=find_stack_level(),
)
|