Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18676: Change 'positive' to 'non-negative' in queue.py put and get | Terry Jan Reedy | 2013-08-10 | 1 | -4/+4 |
| | | | | docstrings and ValueError messages. Patch by Zhongyue Luo | ||||
* | Issue #14428, #14397: Implement the PEP 418 | Victor Stinner | 2012-04-29 | 1 | -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() for | Victor Stinner | 2012-03-15 | 1 | -1/+1 |
| | | | | | timeout in queue and threading modules to not be affected of system time update. | ||||
* | Fix nasty typo | Raymond Hettinger | 2012-01-09 | 1 | -1/+1 |
| | |||||
* | Make the docstring style consistent. | Raymond Hettinger | 2012-01-09 | 1 | -24/+23 |
| | |||||
* | Improve clarity with keyword argument for block. Move nowait methods together. | Raymond Hettinger | 2012-01-09 | 1 | -9/+9 |
| | |||||
* | Minor code clean-ups and beautifications. | Raymond Hettinger | 2012-01-09 | 1 | -17/+17 |
| | |||||
* | Simplify the code using with-statements. | Raymond Hettinger | 2012-01-07 | 1 | -28/+14 |
| | |||||
* | Issue 10110: Let Queue.put recognize a full queue when the maxsize ↵ | Raymond Hettinger | 2010-10-31 | 1 | -5/+5 |
| | | | | parameter has been reduced. | ||||
* | port the queue change r70405 | Benjamin Peterson | 2009-03-21 | 1 | -8/+8 |
| | |||||
* | Document the suggested alternative to emtpy() and full(). | Raymond Hettinger | 2009-03-06 | 1 | -2/+19 |
| | |||||
* | Merged revisions 64125 via svnmerge from | Benjamin Peterson | 2008-06-11 | 1 | -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 Vassalotti | 2008-05-11 | 1 | -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. ........ |