Coverage for /usr/lib/python3/dist-packages/sympy/polys/domainmatrix.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-14 15:55 +0200

1""" 

2Stub module to expose DomainMatrix which has now moved to 

3sympy.polys.matrices package. It should now be imported as: 

4 

5 >>> from sympy.polys.matrices import DomainMatrix 

6 

7This module might be removed in future. 

8""" 

9 

10from sympy.polys.matrices.domainmatrix import DomainMatrix 

11 

12__all__ = ['DomainMatrix']