aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/xml_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'rpkid/rpki/xml_utils.py')
-rw-r--r--rpkid/rpki/xml_utils.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/rpkid/rpki/xml_utils.py b/rpkid/rpki/xml_utils.py
index 9a2f6f61..97f9c5f7 100644
--- a/rpkid/rpki/xml_utils.py
+++ b/rpkid/rpki/xml_utils.py
@@ -103,8 +103,16 @@ class base_elt(object):
protocol does not, due to different design assumptions.
"""
+ ## @var attributes
+ # XML attributes for this element.
attributes = ()
+
+ ## @var elements
+ # XML elements contained by this element.
elements = ()
+
+ ## @var booleans
+ # Boolean attributes (value "yes" or "no") for this element.
booleans = ()
def startElement(self, stack, name, attrs):