Package zope :: Package interface :: Package common :: Module mapping :: Class IExtendedWriteMapping
[show private | hide private]
[frames | no frames]

Type IExtendedWriteMapping

Interface --+    
            |    
IWriteMapping --+
                |
               IExtendedWriteMapping

Known Subclasses:
IFullMapping

Class Variable Summary
str __delitem__ = 'Delete a value from the mapping using the...
str __setitem__ = 'Set a new item in the mapping.'
str clear = 'delete all items'
str pop = 'remove specified key and return the corresponding...
str popitem = 'remove and return some (key, value) pair as a...
str setdefault = 'D.setdefault(k[,d]) -> D.get(k,d), also se...
str update = ' Update D from E: for k in E.keys(): D[k] = E[...

Class Variable Details

__delitem__

Type:
str
Value:
'Delete a value from the mapping using the key.'                       

__setitem__

Type:
str
Value:
'Set a new item in the mapping.'                                       

clear

Type:
str
Value:
'delete all items'                                                     

pop

Type:
str
Value:
'''remove specified key and return the corresponding value
        *args may contain a single default value, or may not be suppli\
ed.
        If key is not found, default is returned if given, otherwise 
        KeyError is raised'''                                          

popitem

Type:
str
Value:
'''remove and return some (key, value) pair as a
        2-tuple; but raise KeyError if mapping is empty'''             

setdefault

Type:
str
Value:
'D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D'     

update

Type:
str
Value:
' Update D from E: for k in E.keys(): D[k] = E[k]'                     

Generated by Epydoc 2.1 on Fri Jun 24 12:01:19 2005 http://epydoc.sf.net