tmpfiles.py 445 B

123456789101112
  1. """
  2. .. deprecated:: 1.6
  3. sympy.utilities.tmpfiles has been renamed to sympy.testing.tmpfiles.
  4. """
  5. from sympy.utilities.exceptions import sympy_deprecation_warning
  6. sympy_deprecation_warning("The sympy.utilities.tmpfiles submodule is deprecated. Use sympy.testing.tmpfiles instead.",
  7. deprecated_since_version="1.6",
  8. active_deprecations_target="deprecated-sympy-utilities-submodules")
  9. from sympy.testing.tmpfiles import * # noqa:F401