__init__.py 330 B

12345678910111213
  1. """
  2. Multipledispatch handlers for ``Predicate`` are implemented here.
  3. Handlers in this module are not directly imported to other modules in
  4. order to avoid circular import problem.
  5. """
  6. from .common import (AskHandler, CommonHandler,
  7. test_closed_group)
  8. __all__ = [
  9. 'AskHandler', 'CommonHandler',
  10. 'test_closed_group'
  11. ]