17 lines
356 B
Python
17 lines
356 B
Python
![]() |
# -*- 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",
|
||
|
]
|