Beispiel #1
0
 def _delete_file(k):
     raise DeletionsNotAllowed(
         "Delete permissions were disabled for this data accessor")
Beispiel #2
0
 def clear(self):
     raise DeletionsNotAllowed(
         "You can't delete (so definitely not delete all) with that Store")
Beispiel #3
0
 def pop(self, k):
     raise DeletionsNotAllowed(
         "You can't delete (including popping) with that Store")
Beispiel #4
0
 def __delitem__(self, k):
     raise DeletionsNotAllowed("You can't delete with that Store")