⚝
One Hat Cyber Team
⚝
Your IP:
3.15.22.202
Server IP:
162.254.39.145
Server:
Linux premium289.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
lib64
/
python3.8
/
asyncio
/
__pycache__
/
View File Name :
queues.cpython-38.pyc
U e5d � @ s� d Z ddlZddlZddlZddlmZ ddlmZ G dd� de�ZG dd � d e�Z G d d� d�Z G dd � d e �ZG dd� de �ZdS ))�Queue� PriorityQueue� LifoQueue� QueueFull� QueueEmpty� N� )�events)�locksc @ s e Zd ZdZdS )r z;Raised when Queue.get_nowait() is called on an empty Queue.N��__name__� __module__�__qualname__�__doc__� r r �&/usr/lib64/python3.8/asyncio/queues.pyr s r c @ s e Zd ZdZdS )r zDRaised when the Queue.put_nowait() method is called on a full Queue.Nr r r r r r s r c @ s� e Zd ZdZd)dd�dd�Zdd� Zd d � Zdd� Zd d� Zdd� Z dd� Z dd� Zdd� Ze dd� �Zdd� Zdd� Zdd� Zdd � Zd!d"� Zd#d$� Zd%d&� Zd'd(� ZdS )*r a A queue, useful for coordinating producer and consumer coroutines. If maxsize is less than or equal to zero, the queue size is infinite. If it is an integer greater than 0, then "await put()" will block when the queue reaches maxsize, until an item is removed by get(). Unlike the standard library Queue, you can reliably know this Queue's size with qsize(), since your single-threaded asyncio application won't be interrupted between calling qsize() and doing an operation on the Queue. r N��loopc C sp |d krt �� | _n|| _tjdtdd� || _t�� | _ t�� | _ d| _tj |d�| _| j�� | �|� d S )Nz[The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10.� )� stacklevelr r )r Zget_event_loop�_loop�warnings�warn�DeprecationWarning�_maxsize�collections�deque�_getters�_putters�_unfinished_tasksr ZEvent� _finished�set�_init)�self�maxsizer r r r �__init__! s � zQueue.__init__c C s t �� | _d S �N)r r �_queue�r"