|
Server IP : 92.112.182.140 / Your IP : 216.73.216.152 Web Server : LiteSpeed System : Linux lt-bnk-web1998.main-hosting.eu 5.14.0-503.35.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 4 05:23:43 EDT 2025 x86_64 User : u549600550 ( 549600550) PHP Version : 8.2.30 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /lib64/python3.9/concurrent/../__pycache__/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
a
�DOg�, � @ s� d Z ddlZddlZddlmZ ddlmZmZ ddlm Z zddl
mZ W n eyb dZY n0 g d�Z
zddl
mZ W n" ey� G d d
� d
e�ZY n0 G dd� de�ZG d
d� d�ZG dd� de�ZG dd� de�ZG dd� d�Zedu r�eZdS )z'A multi-producer, multi-consumer queue.� N)�deque)�heappush�heappop)� monotonic)�SimpleQueue)�Empty�Full�Queue�
PriorityQueue� LifoQueuer )r c @ s e Zd ZdZdS )r z4Exception raised by Queue.get(block=0)/get_nowait().N��__name__�
__module__�__qualname__�__doc__� r r �/usr/lib64/python3.9/queue.pyr s r c @ s e Zd ZdZdS )r z4Exception raised by Queue.put(block=0)/put_nowait().Nr r r r r r s r c @ s� e Zd ZdZd!dd�Zdd� Zdd� Zd d
� Zdd� Zd
d� Z d"dd�Z
d#dd�Zdd� Zdd� Z
dd� Zdd� Zdd� Zdd � Zeej�ZdS )$r zjCreate a queue object with a given maximum size.
If maxsize is <= 0, the queue size is infinite.
r c C sN || _ | �|� t�� | _t�| j�| _t�| j�| _t�| j�| _d| _ d S �Nr )
�maxsize�_init� threading�Lock�mutex� Condition� not_empty�not_full�all_tasks_done�unfinished_tasks��selfr r r r �__init__"