ai-content-maker/.venv/Lib/site-packages/sympy/core/trace.py

13 lines
348 B
Python
Raw Normal View History

2024-05-03 04:18:51 +03:00
from sympy.utilities.exceptions import sympy_deprecation_warning
sympy_deprecation_warning(
"""
sympy.core.trace is deprecated. Use sympy.physics.quantum.trace
instead.
""",
deprecated_since_version="1.10",
active_deprecations_target="sympy-core-trace-deprecated",
)
from sympy.physics.quantum.trace import Tr # noqa:F401