aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Automat/py3/automat/__init__.py
blob: c4b34e565ac9427272f7358f1c6f77074632b14b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- test-case-name: automat -*-
"""
State-machines.
"""
from ._typed import TypeMachineBuilder, pep614, AlreadyBuiltError, TypeMachine
from ._core import NoTransition
from ._methodical import MethodicalMachine

__all__ = [
    "TypeMachineBuilder",
    "TypeMachine",
    "NoTransition",
    "AlreadyBuiltError",
    "pep614",
    "MethodicalMachine",
]