Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3.12/__pycache__/ |
Upload File : |
�
:5j�, � � � d Z ddlZddlZddlmZ ddlmZmZ ddlm Z ddl
mZ g d�Z
ddl
mZ G d� de� Z G d
� d� Z G d� de� Z G d� de� Z G d� d� Ze�eZyy# e$ r dZY �Ow xY w# e$ r G d � d
e� ZY �Zw xY w)z'A multi-producer, multi-consumer queue.� N)�deque)�heappush�heappop)� monotonic)�SimpleQueue)�Empty�Full�Queue�
PriorityQueue� LifoQueuer )r c � � e Zd ZdZy)r z4Exception raised by Queue.get(block=0)/get_nowait().N��__name__�
__module__�__qualname__�__doc__� � �/usr/lib/python3.12/queue.pyr r s � �>�r r c � � e Zd ZdZy)r z4Exception raised by Queue.put(block=0)/put_nowait().Nr r r r r r s � �:�r r c � � e Zd ZdZdd�Zd� Zd� Zd� Zd� Zd� Z dd �Z
dd
�Zd� Zd� Z
d
� Zd� Zd� Zd� Z eej( � Zy)r
zjCreate a queue object with a given maximum size.
If maxsize is <= 0, the queue size is infinite.
c �L � || _ | j |� t j � | _ t j
| j � | _ t j
| j � | _ t j
| j � | _ d| _ y �Nr )
�maxsize�_init� threading�Lock�mutex� Condition� not_empty�not_full�all_tasks_done�unfinished_tasks��selfr s r �__init__zQueue.__init__"