new method 'delete' in storage and config

This commit is contained in:
Romain Bignon 2010-11-11 01:11:00 +01:00
commit ebe29a061f
6 changed files with 37 additions and 0 deletions

View file

@ -30,5 +30,8 @@ class IConfig:
def set(self, *args):
raise NotImplementedError()
def delete(self, *args):
raise NotImplementedError()
def get(self, *args, **kwargs):
raise NotImplementedError()