summaryrefslogtreecommitdiff
path: root/Lib/queue.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #14428, #14397: Implement the PEP 418Victor Stinner2012-04-291-1/+4
| | | | | | | | | * Rename time.steady() to time.monotonic() * On Windows, time.monotonic() uses GetTickCount/GetTickCount64() instead of QueryPerformanceCounter() * time.monotonic() uses CLOCK_HIGHRES if available * Add time.get_clock_info(), time.perf_counter() and time.process_time() functions
* Issue #14222: Use the new time.steady() function instead of time.time() forVictor Stinner2012-03-151-1/+1
| | | | | timeout in queue and threading modules to not be affected of system time update.
* Fix nasty typoRaymond Hettinger2012-01-091-1/+1
|
* Make the docstring style consistent.Raymond Hettinger2012-01-091-24/+23
|
* Improve clarity with keyword argument for block. Move nowait methods together.Raymond Hettinger2012-01-091-9/+9
|
* Minor code clean-ups and beautifications.Raymond Hettinger2012-01-091-17/+17
|
* Simplify the code using with-statements.Raymond Hettinger2012-01-071-28/+14
|
* Issue 10110: Let Queue.put recognize a full queue when the maxsize ↵Raymond Hettinger2010-10-311-5/+5
| | | | parameter has been reduced.
* port the queue change r70405Benjamin Peterson2009-03-211-8/+8
|
* Document the suggested alternative to emtpy() and full().Raymond Hettinger2009-03-061-2/+19
|
* Merged revisions 64125 via svnmerge fromBenjamin Peterson2008-06-111-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64125 | benjamin.peterson | 2008-06-11 12:27:50 -0500 (Wed, 11 Jun 2008) | 2 lines give the threading API PEP 8 names ........
* Rename Queue module to queue.Alexandre Vassalotti2008-05-111-0/+244
Updated documentation to use new name. Merged revisions 63077 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63077 | alexandre.vassalotti | 2008-05-11 15:39:48 -0400 (Sun, 11 May 2008) | 3 lines Added stub for the Queue module to be renamed in 3.0. Use the 3.0 module name to avoid spurious warnings. ........