Home | Trees | Index | Help |
---|
Package svnmailer :: Module util :: Class ReadOnlyDict |
|
object
--+ |dict
--+ | ReadOnlyDict
Method Summary | |
---|---|
deleting is not allowed | |
modifiying is not allowed | |
clearing is not allowed | |
Chokes by default, so work around it (Class method) | |
popping is not allowed | |
popping is not allowed | |
modifying is not allowed | |
updating is not allowed | |
Inherited from dict | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature... | |
x.__cmp__(y) <==> cmp(x,y)... | |
x.__contains__(y) <==> y in x... | |
x.__eq__(y) <==> x==y... | |
x.__ge__(y) <==> x>=y... | |
x.__getattribute__('name') <==> x.name... | |
x.__getitem__(y) <==> x[y]... | |
x.__gt__(y) <==> x>y... | |
x.__hash__() <==> hash(x)... | |
x.__iter__() <==> iter(x)... | |
x.__le__(y) <==> x<=y... | |
x.__len__() <==> len(x)... | |
x.__lt__(y) <==> x<y... | |
x.__ne__(y) <==> x!=y... | |
x.__repr__() <==> repr(x)... | |
D.copy() -> a shallow copy of D... | |
D.get(k[,d]) -> D[k] if k in D, else d. | |
D.has_key(k) -> True if D has a key k, else False... | |
D.items() -> list of D's (key, value) pairs, as 2-tuples... | |
D.iteritems() -> an iterator over the (key, value) items of D... | |
D.iterkeys() -> an iterator over the keys of D... | |
D.itervalues() -> an iterator over the values of D... | |
D.keys() -> list of D's keys... | |
D.values() -> list of D's values... | |
Inherited from object | |
x.__delattr__('name') <==> del x.name... | |
helper for pickle... | |
helper for pickle... | |
x.__setattr__('name', value) <==> x.name = value... | |
x.__str__() <==> str(x)... | |
Inherited from type | |
T.__new__(S, ...) -> a new object with type S, a subtype of T... |
Class Variable Summary | |
---|---|
str |
_ReadOnlyDict__msg = 'The dictionary is read-only'
|
Instance Method Details |
---|
__delitem__(self,
key)
deleting is not allowed |
__setitem__(self,
key,
value)
modifiying is not allowed |
clear(self)clearing is not allowed
|
pop(self, key, default=None)popping is not allowed
|
popitem(self)popping is not allowed
|
setdefault(self, default=None)modifying is not allowed
|
update(self, newdict)updating is not allowed
|
Class Method Details |
---|
fromkeys(cls, seq, value=None)Chokes by default, so work around it
|
Class Variable Details |
---|
_ReadOnlyDict__msg
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.0 on Sun Sep 25 20:49:16 2005 | http://epydoc.sf.net |