randtest.py 430 B

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