Traktor/myenv/Lib/site-packages/sympy/polys/domainmatrix.py

13 lines
310 B
Python
Raw Normal View History

2024-05-23 01:57:24 +02:00
"""
Stub module to expose DomainMatrix which has now moved to
sympy.polys.matrices package. It should now be imported as:
>>> from sympy.polys.matrices import DomainMatrix
This module might be removed in future.
"""
from sympy.polys.matrices.domainmatrix import DomainMatrix
__all__ = ['DomainMatrix']