0x1949 Team - FAZEMRX - MANAGER
Edit File: _core.cpython-310.pyc
o $#�[� � @ sH d Z ddlmZ dZG dd� de�ZG dd� de�ZG dd � d e�Zd S )zp A core state-machine abstraction. Perhaps something that could be replaced with or integrated into machinist. � )�chainz <no state>c s e Zd ZdZ� fdd�Z� ZS )�NoTransitionz� A finite state machine in C{state} has no transition for C{symbol}. @param state: the finite state machine's state at the time of the illegal transition. @param symbol: the input symbol for which no transition exists. c s( || _ || _tt| ��d�||�� d S )Nzno transition for {} in {})�state�symbol�super� Exception�__init__�format)�selfr r �� __class__� �//usr/lib/python3/dist-packages/automat/_core.pyr s �zNoTransition.__init__)�__name__� __module__�__qualname__�__doc__r � __classcell__r r r r r s r c @ sb e Zd ZdZdd� Zedd� �Zejdd� �Zdd� Zd d � Z dd� Z d d� Zdd� Zdd� Z dS )� Automatonzr A declaration of a finite state machine. Note that this is not the machine itself; it is immutable. c C s t | _t� | _dS )zJ Initialize the set of transitions and the initial state. N)� _NO_STATE� _initialState�set�_transitions�r r r r r '