aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/Queue.py
Commit message (Expand)AuthorAge
* Rename Queue module to queue.Alexandre Vassalotti2008-05-11
* Sync-up Queue.py with Py2.6Raymond Hettinger2008-01-17
* Refactor if/elif chain for clarity and speedRaymond Hettinger2008-01-15
* Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping t...Raymond Hettinger2008-01-14
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-13
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-11
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-21
* Simplified the new get/get_nowait/put/put_nowait implementations a bit.Tim Peters2004-07-12
* Bug #788520: Queue class has logic error when non-blockingTim Peters2004-07-12
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-29
* Add __all__ .Brett Cannon2003-07-01
* Use the dummy_thread module in Queue.py and tempfile.py.Guido van Rossum2002-12-30
* Patch #572628: Optional timeouts for put and get.Martin v. Löwis2002-10-15
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-30
* Fix bug 544473 - "Queue module can deadlock".Mark Hammond2002-04-19
* removed __all__ from several modulesSkip Montanaro2001-02-18
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-20
* Variant of Skip's patch 103246 (Remove unneeded string exception compat from ...Tim Peters2001-01-15
* typos fixed by Rob HooftJeremy Hylton2000-06-28
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-02
* Make the maxsize constructor argument default to 0 (an unlimited queue size).Guido van Rossum1999-09-09
* Tim Peters:Guido van Rossum1999-02-08
* Replace all calls to acquire_lock() and release_lock() with acquire()Guido van Rossum1998-04-29
* Clarify that put *blocks* when the queue is full. Add some blankGuido van Rossum1998-04-09
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-26
* (Queue.Empty): When class based exceptions are in force, derive thisBarry Warsaw1997-11-20
* Some minute changes.Guido van Rossum1993-12-29
* * Mass change: get rid of all init() methods, in favor of __init__()Guido van Rossum1993-12-17
* New module implementing a multi-everything queue.Guido van Rossum1992-08-25