]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
add autodoc mode to comments; document QR
authorBob Halley <halley@dnspython.org>
Tue, 10 Jan 2017 13:53:32 +0000 (05:53 -0800)
committerBob Halley <halley@dnspython.org>
Tue, 10 Jan 2017 13:53:32 +0000 (05:53 -0800)
dns/flags.py

index a6bc0960813fc3c884263f721de1c660f26b47df..e1d993bfa775d791acf872cd93b42fe5bc4884fa 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2007, 2009-2011 Nominum, Inc.
+# Copyright (C) 2001-2017 Nominum, Inc.
 #
 # Permission to use, copy, modify, and distribute this software and its
 # documentation for any purpose with or without fee is hereby granted,
 
 # Standard DNS flags
 
+#: Query Response
 QR = 0x8000
-# Authoritative Answer
+#: Authoritative Answer
 AA = 0x0400
-# Truncated Response
+#: Truncated Response
 TC = 0x0200
-# Recursion Desired
+#: Recursion Desired
 RD = 0x0100
-# Recursion Available
+#: Recursion Available
 RA = 0x0080
-# Authentic Data
+#: Authentic Data
 AD = 0x0020
-# Checking Disabled
+#: Checking Disabled
 CD = 0x0010
 
 # EDNS flags
 
-# DNSSEC answer OK
+#: DNSSEC answer OK
 DO = 0x8000
 
 _by_text = {