PageRenderTime 55ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/pandas/util/testing.py

http://github.com/pydata/pandas
Python | 12 lines | 10 code | 2 blank | 0 comment | 0 complexity | 0417b1757f489024602daf127fd40068 MD5 | raw file
Possible License(s): BSD-3-Clause, Apache-2.0
  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. )