_tqdm.py 281 B

1234567
  1. from .std import * # NOQA
  2. from .std import __all__ # NOQA
  3. from .std import TqdmDeprecationWarning
  4. from warnings import warn
  5. warn("This function will be removed in tqdm==5.0.0\n"
  6. "Please use `tqdm.std.*` instead of `tqdm._tqdm.*`",
  7. TqdmDeprecationWarning, stacklevel=2)