index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
Queue.py
Commit message (
Expand
)
Author
Age
*
Rename Queue module to queue.
Alexandre Vassalotti
2008-05-11
*
Sync-up Queue.py with Py2.6
Raymond Hettinger
2008-01-17
*
Refactor if/elif chain for clarity and speed
Raymond Hettinger
2008-01-15
*
Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping t...
Raymond Hettinger
2008-01-14
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
*
Simplified the new get/get_nowait/put/put_nowait implementations a bit.
Tim Peters
2004-07-12
*
Bug #788520: Queue class has logic error when non-blocking
Tim Peters
2004-07-12
*
* Move collections.deque() in from the sandbox
Raymond Hettinger
2004-01-29
*
Add __all__ .
Brett Cannon
2003-07-01
*
Use the dummy_thread module in Queue.py and tempfile.py.
Guido van Rossum
2002-12-30
*
Patch #572628: Optional timeouts for put and get.
Martin v. Löwis
2002-10-15
*
Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)
Raymond Hettinger
2002-06-30
*
Fix bug 544473 - "Queue module can deadlock".
Mark Hammond
2002-04-19
*
removed __all__ from several modules
Skip Montanaro
2001-02-18
*
added __all__ lists to a number of Python modules
Skip Montanaro
2001-01-20
*
Variant of Skip's patch 103246 (Remove unneeded string exception compat from ...
Tim Peters
2001-01-15
*
typos fixed by Rob Hooft
Jeremy Hylton
2000-06-28
*
Mass patch by Ka-Ping Yee:
Guido van Rossum
2000-02-02
*
Make the maxsize constructor argument default to 0 (an unlimited queue size).
Guido van Rossum
1999-09-09
*
Tim Peters:
Guido van Rossum
1999-02-08
*
Replace all calls to acquire_lock() and release_lock() with acquire()
Guido van Rossum
1998-04-29
*
Clarify that put *blocks* when the queue is full. Add some blank
Guido van Rossum
1998-04-09
*
Mass check-in after untabifying all files that need it.
Guido van Rossum
1998-03-26
*
(Queue.Empty): When class based exceptions are in force, derive this
Barry Warsaw
1997-11-20
*
Some minute changes.
Guido van Rossum
1993-12-29
*
* Mass change: get rid of all init() methods, in favor of __init__()
Guido van Rossum
1993-12-17
*
New module implementing a multi-everything queue.
Guido van Rossum
1992-08-25