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.
16 lines
409 B
16 lines
409 B
from sympy.core.traversal import use as _use
|
|
from sympy.utilities.decorator import deprecated
|
|
|
|
use = deprecated(
|
|
"""
|
|
Using use from the sympy.simplify.traversaltools submodule is
|
|
deprecated.
|
|
|
|
Instead, use use from the top-level sympy namespace, like
|
|
|
|
sympy.use
|
|
""",
|
|
deprecated_since_version="1.10",
|
|
active_deprecations_target="deprecated-traversal-functions-moved"
|
|
)(_use)
|