Coverage for /usr/lib/python3/dist-packages/sympy/core/coreerrors.py: 100%
2 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
1"""Definitions of common exceptions for :mod:`sympy.core` module. """
4class BaseCoreError(Exception):
5 """Base class for core related exceptions. """
8class NonCommutativeExpression(BaseCoreError):
9 """Raised when expression didn't have commutative property. """