transitions icon indicating copy to clipboard operation
transitions copied to clipboard

A lightweight, object-oriented finite state machine implementation in Python with many extensions

Results 44 transitions issues
Sort by recently updated
recently updated
newest added

Hi, In the parallel example of transitions-gui, if you send model.event_on_A() and only model/machine A has the event, but the two machines are running in parallel, then a warning will...

encountering a problem when inheriting `HierarchicalMachine`. ```python from transitions.extensions import HierarchicalMachine as HSM logging.basicConfig(level=logging.DEBUG) logging.getLogger('transitions').setLevel(logging.INFO) class P(HSM): def __init__(self): HSM.__init__(self, states=["A", "B"], transitions=[["run", "A", "B"], ["run", "B", "A"]], initial="A") def...

bug

Used the following code (copied from example at https://github.com/pytransitions/transitions): ``` from transitions.extensions.diagrams import HierarchicalGraphMachine import pyperclip states = ['A', 'B', {'name': 'C', 'final': True, 'parallel': [{'name': '1', 'children': ['a', {"name":...

bug