ai-content-maker/.venv/Lib/site-packages/sympy/assumptions/handlers/__init__.py

14 lines
330 B
Python
Raw Normal View History

2024-05-03 04:18:51 +03:00
"""
Multipledispatch handlers for ``Predicate`` are implemented here.
Handlers in this module are not directly imported to other modules in
order to avoid circular import problem.
"""
from .common import (AskHandler, CommonHandler,
test_closed_group)
__all__ = [
'AskHandler', 'CommonHandler',
'test_closed_group'
]