m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
330 B

6 months ago
  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. ]