summaryrefslogtreecommitdiff
path: root/dns/update.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-08-03 06:35:22 -0700
committerBob Halley <halley@dnspython.org>2020-08-03 06:35:22 -0700
commit82bc428366df9694ce0b4cfb7d4503e9d0c38248 (patch)
tree5bd8e9641f2d229f998fffc7436bb291e17e1d7b /dns/update.py
parent049eedd8ab25f211d0fcd88726098327cc27ddb2 (diff)
downloaddnspython-82bc428366df9694ce0b4cfb7d4503e9d0c38248.tar.gz
add constants
Diffstat (limited to 'dns/update.py')
-rw-r--r--dns/update.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/dns/update.py b/dns/update.py
index 8e79650..b4cb755 100644
--- a/dns/update.py
+++ b/dns/update.py
@@ -310,3 +310,12 @@ class UpdateMessage(dns.message.Message):
# backwards compatibility
Update = UpdateMessage
+
+### BEGIN generated updatesection constants
+
+ZONE = UpdateSection.ZONE
+PREREQ = UpdateSection.PREREQ
+UPDATE = UpdateSection.UPDATE
+ADDITIONAL = UpdateSection.ADDITIONAL
+
+### END generated updatesection constants