]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
fix some leftover doco issues
authorBob Halley <halley@dnspython.org>
Mon, 11 May 2020 12:51:00 +0000 (05:51 -0700)
committerBob Halley <halley@dnspython.org>
Mon, 11 May 2020 12:51:00 +0000 (05:51 -0700)
dns/rdtypes/ANY/AVC.py
dns/rdtypes/ANY/EUI48.py
dns/rdtypes/ANY/EUI64.py
dns/rdtypes/ANY/NINFO.py
dns/rdtypes/ANY/SPF.py
dns/rdtypes/CH/A.py

index 7f340b39d2bc8c033228aa7a76f90daabbdc7722..44d23ada27f5b584b21dce6a0ca3a74e13222939 100644 (file)
@@ -20,6 +20,6 @@ import dns.rdtypes.txtbase
 
 class AVC(dns.rdtypes.txtbase.TXTBase):
 
-    """AVC record
+    """AVC record"""
 
-    @see: U{http://www.iana.org/assignments/dns-parameters/AVC/avc-completed-template}"""
+    # See: U{http://www.iana.org/assignments/dns-parameters/AVC/avc-completed-template}
index aa260e205d08298646a600c4789522285c6fd6d8..b16e81f317a0840161ce83041d538ca6306fd7a8 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
 # Copyright (C) 2015 Red Hat, Inc.
 # Author: Petr Spacek <pspacek@redhat.com>
 #
@@ -19,11 +21,9 @@ import dns.rdtypes.euibase
 
 class EUI48(dns.rdtypes.euibase.EUIBase):
 
-    """EUI48 record
+    """EUI48 record"""
 
-    @ivar fingerprint: 48-bit Extended Unique Identifier (EUI-48)
-    @type fingerprint: string
-    @see: rfc7043.txt"""
+    # see: rfc7043.txt
 
     byte_len = 6  # 0123456789ab (in hex)
     text_len = byte_len * 3 - 1  # 01-23-45-67-89-ab
index 5eba350d8f86fb0170a7d37a4b07a7aa4a043e08..cc080760009119c59184a49d603c7f7afff3de5a 100644 (file)
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
 # Copyright (C) 2015 Red Hat, Inc.
 # Author: Petr Spacek <pspacek@redhat.com>
 #
@@ -19,11 +21,9 @@ import dns.rdtypes.euibase
 
 class EUI64(dns.rdtypes.euibase.EUIBase):
 
-    """EUI64 record
+    """EUI64 record"""
 
-    @ivar fingerprint: 64-bit Extended Unique Identifier (EUI-64)
-    @type fingerprint: string
-    @see: rfc7043.txt"""
+    # see: rfc7043.txt
 
     byte_len = 8  # 0123456789abcdef (in hex)
     text_len = byte_len * 3 - 1  # 01-23-45-67-89-ab-cd-ef
index d754bc1a7e237e6a02c731d7fcac3e0d42478ec3..d4c8572c81afa2901d6e87b9cbabbe6791d1aa85 100644 (file)
@@ -20,5 +20,6 @@ import dns.rdtypes.txtbase
 
 class NINFO(dns.rdtypes.txtbase.TXTBase):
 
-    """NINFO record
-    @see: draft-reid-dnsext-zs-01"""
+    """NINFO record"""
+
+    # see: draft-reid-dnsext-zs-01
index 41dee62387afda53a0d64708620a1d056531c2f3..f1f6834e0050cdb30162038e567b3e7b29db2797 100644 (file)
@@ -20,6 +20,6 @@ import dns.rdtypes.txtbase
 
 class SPF(dns.rdtypes.txtbase.TXTBase):
 
-    """SPF record
+    """SPF record"""
 
-    @see: RFC 4408"""
+    # see: RFC 4408
index 1395f7a1db69316d944e188ff8160b6ad0e7e84b..9c620ea030d1f955f24e36988cb0c431be5bf951 100644 (file)
@@ -20,11 +20,10 @@ import struct
 
 class A(dns.rdtypes.mxbase.MXBase):
 
-    """A record for Chaosnet
-    @ivar domain: the domain of the address
-    @type domain: dns.name.Name object
-    @ivar address: the 16-bit address
-    @type address: int"""
+    """A record for Chaosnet"""
+
+    # domain: the domain of the address
+    # address: the 16-bit address
 
     __slots__ = ['domain', 'address']