Added docstrings.

This commit is contained in:
Jeremy Fincher 2003-10-04 13:22:40 +00:00
parent d4ba047b2f
commit 69493ebf88
1 changed files with 3 additions and 0 deletions

View File

@ -35,14 +35,17 @@ class ChannelDBHandler(object):
self.suffix = suffix
def makeFilename(self, channel):
"""Override this to specialize the filenames of your databases."""
channel = ircutils.toLower(channel)
prefix = '%s-%s%s' % (channel, self.__class__.__name__, self.suffix)
return os.path.join(conf.dataDir, prefix)
def makeDb(self, filename):
"""Override this to create your databases."""
return cdb.shelf(filename)
def getDb(self, channel):
"""Use this to get a database for a specific channel."""
try:
if self.threaded:
return self.makeDb(self.makeFilename(channel))