Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wiseplat
GitHub Repository: wiseplat/python-code
Path: blob/master/ invest-robot-contest_TinkoffBotTwitch-main/venv/lib/python3.8/site-packages/pandas/util/testing.py
7813 views
1
import warnings
2
3
from pandas.util._exceptions import find_stack_level
4
5
from pandas._testing import * # noqa:F401,F403,PDF014
6
7
warnings.warn(
8
(
9
"pandas.util.testing is deprecated. Use the functions in the "
10
"public API at pandas.testing instead."
11
),
12
FutureWarning,
13
stacklevel=find_stack_level(),
14
)
15
16