aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Automat/py2/automat/__init__.py
blob: 570b84f995135fe94ffd1cc852c71597e9522d51 (plain) (blame)
1
2
3
4
5
6
7
8
# -*- test-case-name: automat -*-
from ._methodical import MethodicalMachine
from ._core import NoTransition

__all__ = [
    'MethodicalMachine',
    'NoTransition',
]