testing.py 242 B

123456789101112
  1. import warnings
  2. from pandas._testing import * # noqa
  3. warnings.warn(
  4. (
  5. "pandas.util.testing is deprecated. Use the functions in the "
  6. "public API at pandas.testing instead."
  7. ),
  8. FutureWarning,
  9. stacklevel=2,
  10. )