|
__contains__(x,
y)
y in x |
|
|
|
__delitem__(x,
y)
del x[y] |
|
|
|
|
|
|
|
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature |
|
|
|
|
|
|
|
__new__(T,
S,
...)
Returns:
a new object with type S, a subtype of T |
|
|
|
|
|
__setitem__(x,
i,
y)
x[i]=y |
|
|
|
|
|
|
|
_p_resolveConflict()
Reinitialize from a newly created copy |
|
|
|
byValue(min)
Return value-keys with values >= min and reverse sorted by
values |
|
|
|
clear()
Remove all of the items from the bucket |
|
|
|
get(key,
default=...)
Look up a value |
|
|
|
has_key(key)
Test whether the bucket contains the given key |
|
|
|
items(...)
items([min, max])) -- Return the items |
|
|
|
iteritems(B,
min=...,
max=...)
Returns:
an iterator over the (key, value) items of B |
|
|
|
iterkeys(B,
min=...,
max=...)
Returns:
an iterator over the keys of B |
|
|
|
itervalues(B,
min=...,
max=...)
Returns:
an iterator over the values of B |
|
|
|
keys(min=...,
max=...)
Return the keys |
|
|
|
maxKey(key=...)
Find the maximum key |
|
|
|
minKey(key=...)
Find the minimum key |
|
|
|
update(collection)
Add the items from the given collection |
|
|
|
values(min=...,
max=...)
Return the values |
|
|
Inherited from persistent.Persistent :
__delattr__ ,
__getattribute__ ,
__reduce__ ,
__setattr__
Inherited from persistent.Persistent (private):
_p_activate ,
_p_delattr ,
_p_getattr ,
_p_invalidate ,
_p_setattr
Inherited from object :
__hash__ ,
__reduce_ex__ ,
__str__
|