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
13 lines
330 B
"""
|
|
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'
|
|
]
|