Trees | Indices | Help |
|
---|
|
object --+ | MemoryQueue
Simple length bounded queue using deque.
list.pop(0) operation is O(n) so for a 10000 items list, it can start to be real slow. On the contrary, deque.popleft() is O(1) most of the time. See http://docs.python.org/library/collections.html for more information.
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from |
Class Variables | |
__implemented__ = <implementedBy buildbot.status.persistent_qu
|
Properties | |
Inherited from |
Method Details |
x.__init__(...) initializes x; see help(type(x)) for signature
|
Special descriptor for class __provides__ The descriptor caches the implementedBy info, so that we can get declarations for objects without instance-specific interfaces a bit quicker. |
Class Variable Details |
__implemented__
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Nov 21 16:22:45 2012 | http://epydoc.sourceforge.net |