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