From: Bob Halley Date: Mon, 11 May 2020 17:59:54 +0000 (-0700) Subject: fix quoting X-Git-Tag: v2.0.0rc1~220 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99f5cf560b3df0f5a024952a846f599e51c41c7a;p=thirdparty%2Fdnspython.git fix quoting --- diff --git a/dns/dnssec.py b/dns/dnssec.py index 7cb0d807..fe00a9d5 100644 --- a/dns/dnssec.py +++ b/dns/dnssec.py @@ -291,7 +291,7 @@ def _validate_rrsig(rrset, rrsig, keys, origin=None, now=None): exception if validation is not successful. *rrset*, the RRset to validate. This can be a - ``dns.rrset.RRset`` or a (``dns.name.Name`, ``dns.rdataset.Rdataset``) + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) tuple. *rrsig*, a ``dns.rdata.Rdata``, the signature to validate. @@ -299,7 +299,7 @@ def _validate_rrsig(rrset, rrsig, keys, origin=None, now=None): *keys*, the key dictionary, used to find the DNSKEY associated with a given name. The dictionary is keyed by a ``dns.name.Name``, and has ``dns.node.Node`` or - `dns.rdataset.Rdataset`` values. + ``dns.rdataset.Rdataset`` values. *origin*, a ``dns.name.Name`` or ``None``, the origin to use for relative names. @@ -468,7 +468,7 @@ def _validate(rrset, rrsigset, keys, origin=None, now=None): validates, or throws an exception if no signature validates. *rrset*, the RRset to validate. This can be a - ``dns.rrset.RRset`` or a (``dns.name.Name`, ``dns.rdataset.Rdataset``) + ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``) tuple. *rrsigset*, the signature RRset. This can be a @@ -478,7 +478,7 @@ def _validate(rrset, rrsigset, keys, origin=None, now=None): *keys*, the key dictionary, used to find the DNSKEY associated with a given name. The dictionary is keyed by a ``dns.name.Name``, and has ``dns.node.Node`` or - `dns.rdataset.Rdataset`` values. + ``dns.rdataset.Rdataset`` values. *origin*, a ``dns.name.Name``, the origin to use for relative names; defaults to None.