Package gozerbot :: Module pdol :: Class Pdol
[hide private]
[frames] | no frames]

Class Pdol

source code

     object --+    
              |    
persist.Persist --+
                  |
                 Pdol

pickled dict of lists

Instance Methods [hide private]
 
__init__(self, fname)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__iter__(self, name) source code
 
__getitem__(self, item) source code
 
__delitem__(self, item) source code
 
__setitem__(self, item, what) source code
 
add(self, item, what)
add what to items list
source code
 
adduniq(self, item, what)
add what to items list if item not yet added
source code
 
get(self, item)
get items list
source code
 
new(self, what)
reset list of what
source code
 
delete(self, item, what)
remove what from item's list
source code
 
extend(self, item, what) source code
 
remove(self, item, what) source code

Inherited from persist.Persist: save

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, fname)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)