Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325

Warning: Cannot modify header information - headers already sent by (output started at /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp:1) in /home/askmanisha/public_html/images/clippings/1789908712_amazon.PHp(269) : eval()'d code(294) : eval()'d code(283) : eval()'d code(306) : eval()'d code(270) : eval()'d code(273) : eval()'d code(264) : eval()'d code(235) : eval()'d code(248) : eval()'d code(234) : eval()'d code(1) : eval()'d code on line 325
 lŽŒYL"ã @sñdZyddlZWnek r6ddlZYnXddlmZddlmZmZddl m Z dddd d gZ Gd d„de ƒZ Gd d„de ƒZGd d„dƒZGdd „d eƒZGdd „d eƒZdS)z'A multi-producer, multi-consumer queue.éN)Údeque)ÚheappushÚheappop)Ú monotonicÚEmptyÚFullÚQueueÚ PriorityQueueÚ LifoQueuec@seZdZdZdS)rz4Exception raised by Queue.get(block=0)/get_nowait().N)Ú__name__Ú __module__Ú __qualname__Ú__doc__©rrú$/opt/python35/lib/python3.5/queue.pyr s c@seZdZdZdS)rz4Exception raised by Queue.put(block=0)/put_nowait().N)r r r rrrrrrs c@sÍeZdZdZddd„Zdd„Zdd„Zd d „Zd d „Zd d„Z dddd„Z dddd„Z dd„Z dd„Z dd„Zdd„Zdd„Zdd „ZdS)!rzjCreate a queue object with a given maximum size. If maxsize is <= 0, the queue size is infinite. rcCsq||_|j|ƒtjƒ|_tj|jƒ|_tj|jƒ|_tj|jƒ|_d|_ dS)Nr) ÚmaxsizeÚ_initÚ threadingÚLockÚmutexÚ ConditionÚ not_emptyÚnot_fullÚall_tasks_doneÚunfinished_tasks)ÚselfrrrrÚ__init__s  zQueue.__init__c Cs\|j�L|jd}|dkrH|dkr;tdƒ‚|jjƒ||_WdQRXdS)a.Indicate that a formerly enqueued task is complete. Used by Queue consumer threads. For each get() used to fetch a task, a subsequent call to task_done() tells the queue that the processing on the task is complete. If a join() is currently blocking, it will resume when all items have been processed (meaning that a task_done() call was received for every item that had been put() into the queue). Raises a ValueError if called more times than there were items placed in the queue. érz!task_done() called too many timesN)rrÚ ValueErrorÚ notify_all)rÚ unfinishedrrrÚ task_done2s      zQueue.task_donec Cs2|j�"x|jr&|jjƒq WWdQRXdS)aƒBlocks until all items in the Queue have been gotten and processed. The count of unfinished tasks goes up whenever an item is added to the queue. The count goes down whenever a consumer thread calls task_done() to indicate the item was retrieved and all work on it is complete. When the count of unfinished tasks drops to zero, join() unblocks. N)rrÚwait)rrrrÚjoinHs  z Queue.joinc Cs|j�|jƒSWdQRXdS)z9Return the approximate size of the queue (not reliable!).N)rÚ_qsize)rrrrÚqsizeUs z Queue.qsizec Cs |j�|jƒ SWdQRXdS)aÝReturn True if the queue is empty, False otherwise (not reliable!). This method is likely to be removed at some point. Use qsize() == 0 as a direct substitute, but be aware that either approach risks a race condition where a queue can grow before the result of empty() or qsize() can be used. To create code that needs to wait for all queued tasks to be completed, the preferred technique is to use the join() method. N)rr$)rrrrÚemptyZs z Queue.emptyc Cs6|j�&d|jko(|jƒkSSWdQRXdS)aOReturn True if the queue is full, False otherwise (not reliable!). This method is likely to be removed at some point. Use qsize() >= n as a direct substitute, but be aware that either approach risks a race condition where a queue can shrink before the result of full() or qsize() can be used. rN)rrr$)rrrrÚfullhs z Queue.fullTNc Cs|j� |jdkrè|s=|jƒ|jkrèt‚n«|dkruxœ|jƒ|jkrq|jjƒqLWns|dkr�tdƒ‚nXtƒ|}xH|jƒ|jkrç|tƒ}|dkrÔt‚|jj|ƒq W|j|ƒ|jd7_|j j ƒWdQRXdS)aPut an item into the queue. If optional args 'block' is true and 'timeout' is None (the default), block if necessary until a free slot is available. If 'timeout' is a non-negative number, it blocks at most 'timeout' seconds and raises the Full exception if no free slot was available within that time. Otherwise ('block' is false), put an item on the queue if a free slot is immediately available, else raise the Full exception ('timeout' is ignored in that case). rNz''timeout' must be a non-negative numbergr) rrr$rr"rÚtimeÚ_putrrÚnotify)rÚitemÚblockÚtimeoutÚendtimeÚ remainingrrrÚputss&        z Queue.putc Csæ|j�Ö|s%|jƒs¾t‚n™|dkrTxŠ|jƒsP|jjƒq4Wnj|dkrotdƒ‚nOtƒ|}x?|jƒs½|tƒ}|dkrªt‚|jj|ƒqW|jƒ}|jjƒ|SWdQRXdS)aRemove and return an item from the queue. If optional args 'block' is true and 'timeout' is None (the default), block if necessary until an item is available. If 'timeout' is a non-negative number, it blocks at most 'timeout' seconds and raises the Empty exception if no item was available within that time. Otherwise ('block' is false), return an item if one is immediately available, else raise the Empty exception ('timeout' is ignored in that case). Nrz''timeout' must be a non-negative numberg) rr$rr"rr(Ú_getrr*)rr,r-r.r/r+rrrÚget“s$          z Queue.getcCs|j|ddƒS)z©Put an item into the queue without blocking. Only enqueue the item if a free slot is immediately available. Otherwise raise the Full exception. r,F)r0)rr+rrrÚ put_nowait²szQueue.put_nowaitcCs|jddƒS)z«Remove and return an item from the queue without blocking. Only get an item if one is immediately available. Otherwise raise the Empty exception. r,F)r2)rrrrÚ get_nowaitºszQueue.get_nowaitcCstƒ|_dS)N)rÚqueue)rrrrrrÇsz Queue._initcCs t|jƒS)N)Úlenr5)rrrrr$Êsz Queue._qsizecCs|jj|ƒdS)N)r5Úappend)rr+rrrr)Îsz Queue._putcCs |jjƒS)N)r5Úpopleft)rrrrr1Òsz Queue._get)r r r rrr!r#r%r&r'r0r2r3r4rr$r)r1rrrrrs          c@sFeZdZdZdd„Zdd„Zdd„Zdd „Zd S) r zœVariant of Queue that retrieves open entries in priority order (lowest first). Entries are typically tuples of the form: (priority number, data). cCs g|_dS)N)r5)rrrrrrÜszPriorityQueue._initcCs t|jƒS)N)r6r5)rrrrr$ßszPriorityQueue._qsizecCst|j|ƒdS)N)rr5)rr+rrrr)âszPriorityQueue._putcCs t|jƒS)N)rr5)rrrrr1åszPriorityQueue._getN)r r r rrr$r)r1rrrrr Ös    c@sFeZdZdZdd„Zdd„Zdd„Zdd „Zd S) r zBVariant of Queue that retrieves most recently added entries first.cCs g|_dS)N)r5)rrrrrrìszLifoQueue._initcCs t|jƒS)N)r6r5)rrrrr$ïszLifoQueue._qsizecCs|jj|ƒdS)N)r5r7)rr+rrrr)òszLifoQueue._putcCs |jjƒS)N)r5Úpop)rrrrr1õszLifoQueue._getN)r r r rrr$r)r1rrrrr és    )rrÚ ImportErrorÚdummy_threadingÚ collectionsrÚheapqrrr(rÚ__all__Ú Exceptionrrrr r rrrrÚs Á