1. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  2. 7608b60 Issue #18676: Change 'positive' to 'non-negative' in queue.py put and get by Terry Jan Reedy · 11 years ago
  3. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  4. 3d7c878 Issue #14222: Use the new time.steady() function instead of time.time() for by Victor Stinner · 12 years ago
  5. 7b7caa8 Fix nasty typo by Raymond Hettinger · 12 years ago
  6. 0c5e52f Make the docstring style consistent. by Raymond Hettinger · 12 years ago
  7. 61bd729 Improve clarity with keyword argument for block. Move nowait methods together. by Raymond Hettinger · 12 years ago
  8. 143f51a Minor code clean-ups and beautifications. by Raymond Hettinger · 12 years ago
  9. 7540427 Simplify the code using with-statements. by Raymond Hettinger · 12 years ago
  10. 189316a Issue 10110: Let Queue.put recognize a full queue when the maxsize parameter has been reduced. by Raymond Hettinger · 14 years ago
  11. 0ed5245 port the queue change r70405 by Benjamin Peterson · 15 years ago
  12. 611eaf0 Document the suggested alternative to emtpy() and full(). by Raymond Hettinger · 15 years ago
  13. 672b803 Merged revisions 64125 via svnmerge from by Benjamin Peterson · 16 years ago
  14. f260e44 Rename Queue module to queue. by Alexandre Vassalotti · 16 years ago[Renamed (94%) from Lib/Queue.py]
  15. 3564146 Sync-up Queue.py with Py2.6 by Raymond Hettinger · 16 years ago
  16. ae138cb Refactor if/elif chain for clarity and speed by Raymond Hettinger · 16 years ago
  17. da3caed Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping the Empty and Full exceptions. by Raymond Hettinger · 16 years ago
  18. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  19. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  20. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  21. 71ed220 Simplified the new get/get_nowait/put/put_nowait implementations a bit. by Tim Peters · 20 years ago
  22. 5af0e41 Bug #788520: Queue class has logic error when non-blocking by Tim Peters · 20 years ago
  23. 756b3f3 * Move collections.deque() in from the sandbox by Raymond Hettinger · 20 years ago
  24. b42bb5a Add __all__ . by Brett Cannon · 21 years ago
  25. a093424 Use the dummy_thread module in Queue.py and tempfile.py. by Guido van Rossum · 21 years ago
  26. 77ac429 Patch #572628: Optional timeouts for put and get. by Martin v. Löwis · 22 years ago
  27. 46ac8eb Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) by Raymond Hettinger · 22 years ago
  28. 3b959db Fix bug 544473 - "Queue module can deadlock". by Mark Hammond · 22 years ago
  29. 7834907 removed __all__ from several modules by Skip Montanaro · 23 years ago
  30. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  31. b8c9417 Variant of Skip's patch 103246 (Remove unneeded string exception compat from Queue). by Tim Peters · 23 years ago
  32. a05e293 typos fixed by Rob Hooft by Jeremy Hylton · 24 years ago
  33. 4acc25b Mass patch by Ka-Ping Yee: by Guido van Rossum · 24 years ago
  34. a41c691 Make the maxsize constructor argument default to 0 (an unlimited queue size). by Guido van Rossum · 25 years ago
  35. 9e1721f Tim Peters: by Guido van Rossum · 25 years ago
  36. 7e6d18c Replace all calls to acquire_lock() and release_lock() with acquire() by Guido van Rossum · 26 years ago
  37. c09e6b1 Clarify that put *blocks* when the queue is full. Add some blank by Guido van Rossum · 26 years ago
  38. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  39. 3d96d52 (Queue.Empty): When class based exceptions are in force, derive this by Barry Warsaw · 27 years ago
  40. dd8cb44 Some minute changes. by Guido van Rossum · 30 years ago
  41. 7bc817d * Mass change: get rid of all init() methods, in favor of __init__() by Guido van Rossum · 31 years ago
  42. 9022fce New module implementing a multi-everything queue. by Guido van Rossum · 32 years ago