One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3
/
dist-packages
/
automat
/
__pycache__
/
View File Name :
_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 '