Whoa. Long time no commit. Anyway, we make shelf dispatch to Shelf appropriately.

This commit is contained in:
Jeremy Fincher 2004-04-14 15:16:10 +00:00
parent 6504dfcaa1
commit 1a40c6fc69
1 changed files with 3 additions and 3 deletions

View File

@ -87,14 +87,14 @@ def open(filename, mode='r'):
else:
raise ValueError, 'Invalid flag: %s' % mode
def shelf(filename):
def shelf(filename, *args, **kwargs):
"""Opens a new shelf database object."""
if os.path.exists(filename):
return Shelf(filename)
return Shelf(filename, *args, **kwargs)
else:
maker = Maker(filename)
maker.finish()
return Shelf(filename)
return Shelf(filename, *args, **kwargs)
def _readKeyValue(fd):
klen = 0