mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-14 02:58:16 +01:00
13 lines
242 B
Python
13 lines
242 B
Python
|
import warnings
|
||
|
|
||
|
from pandas._testing import * # noqa
|
||
|
|
||
|
warnings.warn(
|
||
|
(
|
||
|
"pandas.util.testing is deprecated. Use the functions in the "
|
||
|
"public API at pandas.testing instead."
|
||
|
),
|
||
|
FutureWarning,
|
||
|
stacklevel=2,
|
||
|
)
|