summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Croq <bertrand.croq@gmail.com>2015-02-25 17:04:42 +0100
committerBertrand Croq <bertrand.croq@gmail.com>2015-02-25 17:04:42 +0100
commitda025fcd9dd3483f008a77b0aaa6cd040dab3745 (patch)
tree06e08677c5c28213eafe147570a1ea20e766ed6d
parent1a25c0ce6809608b1c68f947a6443e13a671d59f (diff)
downloadrdflib-da025fcd9dd3483f008a77b0aaa6cd040dab3745.tar.gz
add `query` method
-rw-r--r--rdflib/plugins/stores/auditable.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/rdflib/plugins/stores/auditable.py b/rdflib/plugins/stores/auditable.py
index 8ea86c0e..ea43f372 100644
--- a/rdflib/plugins/stores/auditable.py
+++ b/rdflib/plugins/stores/auditable.py
@@ -45,6 +45,9 @@ class AuditableStore(Store):
def destroy(self, configuration):
self.store.destroy(configuration)
+ def query(self, *args, **kw):
+ return self.store.query(*args, **kw)
+
def add(self, triple, context, quoted=False):
(s, p, o) = triple
lock = destructiveOpLocks['add']