|
__init__(self,
req,
config)
Takes in a PyBlosxom request object and a configuration string
which determines where to store the pickle files. |
source code
|
|
|
load(self,
entryid)
Takes an entryid and keeps track of the filename. |
source code
|
|
|
|
boolean
|
|
|
|
|
|
list of strings
|
keys(self)
Returns a list of the keys found in this entrypickle instance. |
source code
|
|
string
|
__makepath(self,
path)
Creates the directory and all parent directories for a specified
path. |
source code
|
|
|
__delitem__(self,
key)
Convenience function to make this look more like a dict. |
source code
|
|
|
__getitem__(self,
key)
Convenience function to make this class look like a dict. |
source code
|
|
|
|
|
close(self)
Override this to close your cache if necessary. |
source code
|
|
|
get(self,
key,
default=None)
Convenience function to make this look more like a dict. |
source code
|
|
|
has_key(self,
key)
Convenience function to make this look more like a dict. |
source code
|
|