summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/db_op.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/server/db_op.py b/src/server/db_op.py
index a755293c..b725c358 100644
--- a/src/server/db_op.py
+++ b/src/server/db_op.py
@@ -69,7 +69,13 @@ class DB_op(object):
return ret
class DB_composed_op(DB_op):
-
+ """
+ A DB_op composed of sup-operations with the intention of being able to
+ partially succeed in sub-op execution. This op class will reject addition
+ of direct query statements.
+
+ Note: this class may be removed in future releases.
+ """
def __init__(self):
super(DB_composed_op, self).__init__()
self.sub_op_set = []