File: __init__.py

package info (click to toggle)
automat 20.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 400 kB
  • sloc: python: 1,909; makefile: 16; sh: 2
file content (8 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
# -*- test-case-name: automat -*-
from ._methodical import MethodicalMachine
from ._core import NoTransition

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