m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
409 B

7 months ago
  1. from sympy.core.traversal import use as _use
  2. from sympy.utilities.decorator import deprecated
  3. use = deprecated(
  4. """
  5. Using use from the sympy.simplify.traversaltools submodule is
  6. deprecated.
  7. Instead, use use from the top-level sympy namespace, like
  8. sympy.use
  9. """,
  10. deprecated_since_version="1.10",
  11. active_deprecations_target="deprecated-traversal-functions-moved"
  12. )(_use)