Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
67715f042096b4f77e359823f2c8d330f2b965b9
/
Lib
/
Queue.py
71ed220
Simplified the new get/get_nowait/put/put_nowait implementations a bit.
by Tim Peters
· 20 years ago
5af0e41
Bug #788520: Queue class has logic error when non-blocking
by Tim Peters
· 20 years ago
756b3f3
* Move collections.deque() in from the sandbox
by Raymond Hettinger
· 21 years ago
b42bb5a
Add __all__ .
by Brett Cannon
· 21 years ago
a093424
Use the dummy_thread module in Queue.py and tempfile.py.
by Guido van Rossum
· 22 years ago
77ac429
Patch #572628: Optional timeouts for put and get.
by Martin v. Löwis
· 22 years ago
46ac8eb
Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)
by Raymond Hettinger
· 22 years ago
3b959db
Fix bug 544473 - "Queue module can deadlock".
by Mark Hammond
· 23 years ago
7834907
removed __all__ from several modules
by Skip Montanaro
· 24 years ago
e99d5ea
added __all__ lists to a number of Python modules
by Skip Montanaro
· 24 years ago
b8c9417
Variant of Skip's patch 103246 (Remove unneeded string exception compat from Queue).
by Tim Peters
· 24 years ago
a05e293
typos fixed by Rob Hooft
by Jeremy Hylton
· 24 years ago
4acc25b
Mass patch by Ka-Ping Yee:
by Guido van Rossum
· 25 years ago
a41c691
Make the maxsize constructor argument default to 0 (an unlimited queue size).
by Guido van Rossum
· 25 years ago
9e1721f
Tim Peters:
by Guido van Rossum
· 26 years ago
7e6d18c
Replace all calls to acquire_lock() and release_lock() with acquire()
by Guido van Rossum
· 27 years ago
c09e6b1
Clarify that put *blocks* when the queue is full. Add some blank
by Guido van Rossum
· 27 years ago
45e2fbc
Mass check-in after untabifying all files that need it.
by Guido van Rossum
· 27 years ago
3d96d52
(Queue.Empty): When class based exceptions are in force, derive this
by Barry Warsaw
· 27 years ago
dd8cb44
Some minute changes.
by Guido van Rossum
· 31 years ago
7bc817d
* Mass change: get rid of all init() methods, in favor of __init__()
by Guido van Rossum
· 31 years ago
9022fce
New module implementing a multi-everything queue.
by Guido van Rossum
· 32 years ago