summaryrefslogtreecommitdiff
path: root/Lib/Queue.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #18676: Change 'positive' to 'non-negative' in queue.py put and getTerry Jan Reedy2013-08-101-4/+4
* Move the previously local import of threading to module level.Georg Brandl2009-03-151-8/+8
* give the threading API PEP 8 namesBenjamin Peterson2008-06-111-1/+1
* Queue renaming reversal part 3: move module into place andGeorg Brandl2008-05-251-0/+244
* Moved the Queue module stub in lib-old.Alexandre Vassalotti2008-05-111-8/+0
* Added stub for the Queue module to be renamed in 3.0.Alexandre Vassalotti2008-05-111-242/+6
* Add queues will alternative fetch orders (priority based and stack based).Raymond Hettinger2008-01-161-2/+38
* Refactor if/elif chain for clarity and speed. Remove dependency on subclasse...Raymond Hettinger2008-01-151-30/+23
* ... and the number of the counting shall be three.Raymond Hettinger2006-11-231-1/+1
* document the class, not its initializerSkip Montanaro2006-06-101-4/+4
* Don't decrement below zero. And add more tests.Raymond Hettinger2006-03-251-1/+2
* Whitespace normalization.Tim Peters2006-03-251-1/+1
* SF Patch #1455676: Simplify using Queues with daemon consumer threadsRaymond Hettinger2006-03-241-0/+45
* Simplified the new get/get_nowait/put/put_nowait implementations a bit.Tim Peters2004-07-121-27/+12
* Bug #788520: Queue class has logic error when non-blockingTim Peters2004-07-121-85/+62
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-291-2/+3
* Add __all__ .Brett Cannon2003-07-011-0/+2
* Use the dummy_thread module in Queue.py and tempfile.py.Guido van Rossum2002-12-301-1/+4
* Patch #572628: Optional timeouts for put and get.Martin v. Löwis2002-10-151-17/+69
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-3/+1
* Fix bug 544473 - "Queue module can deadlock".Mark Hammond2002-04-191-14/+33
* removed __all__ from several modulesSkip Montanaro2001-02-181-2/+0
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
* Variant of Skip's patch 103246 (Remove unneeded string exception compat from ...Tim Peters2001-01-151-13/+7
* typos fixed by Rob HooftJeremy Hylton2000-06-281-1/+1
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-021-1/+1
* Make the maxsize constructor argument default to 0 (an unlimited queue size).Guido van Rossum1999-09-091-1/+1
* Tim Peters:Guido van Rossum1999-02-081-42/+40
* Replace all calls to acquire_lock() and release_lock() with acquire()Guido van Rossum1998-04-291-25/+25
* Clarify that put *blocks* when the queue is full. Add some blankGuido van Rossum1998-04-091-1/+6
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-85/+85
* (Queue.Empty): When class based exceptions are in force, derive thisBarry Warsaw1997-11-201-116/+130
* Some minute changes.Guido van Rossum1993-12-291-0/+1
* * Mass change: get rid of all init() methods, in favor of __init__()Guido van Rossum1993-12-171-3/+1
* New module implementing a multi-everything queue.Guido van Rossum1992-08-251-0/+122