mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 05:31:15 -07:00
Bump dnspython from 2.4.2 to 2.6.1 (#2264)
* Bump dnspython from 2.4.2 to 2.6.1 Bumps [dnspython](https://github.com/rthalley/dnspython) from 2.4.2 to 2.6.1. - [Release notes](https://github.com/rthalley/dnspython/releases) - [Changelog](https://github.com/rthalley/dnspython/blob/main/doc/whatsnew.rst) - [Commits](https://github.com/rthalley/dnspython/compare/v2.4.2...v2.6.1) --- updated-dependencies: - dependency-name: dnspython dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update dnspython==2.6.1 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
This commit is contained in:
parent
aca7e72715
commit
cfefa928be
101 changed files with 1052 additions and 459 deletions
|
@ -26,7 +26,6 @@ import dns.renderer
|
|||
|
||||
|
||||
class RRset(dns.rdataset.Rdataset):
|
||||
|
||||
"""A DNS RRset (named rdataset).
|
||||
|
||||
RRset inherits from Rdataset, and RRsets can be treated as
|
||||
|
@ -132,7 +131,7 @@ class RRset(dns.rdataset.Rdataset):
|
|||
self,
|
||||
origin: Optional[dns.name.Name] = None,
|
||||
relativize: bool = True,
|
||||
**kw: Dict[str, Any]
|
||||
**kw: Dict[str, Any],
|
||||
) -> str:
|
||||
"""Convert the RRset into DNS zone file format.
|
||||
|
||||
|
@ -159,7 +158,7 @@ class RRset(dns.rdataset.Rdataset):
|
|||
file: Any,
|
||||
compress: Optional[dns.name.CompressType] = None, # type: ignore
|
||||
origin: Optional[dns.name.Name] = None,
|
||||
**kw: Dict[str, Any]
|
||||
**kw: Dict[str, Any],
|
||||
) -> int:
|
||||
"""Convert the RRset to wire format.
|
||||
|
||||
|
@ -231,7 +230,7 @@ def from_text(
|
|||
ttl: int,
|
||||
rdclass: Union[dns.rdataclass.RdataClass, str],
|
||||
rdtype: Union[dns.rdatatype.RdataType, str],
|
||||
*text_rdatas: Any
|
||||
*text_rdatas: Any,
|
||||
) -> RRset:
|
||||
"""Create an RRset with the specified name, TTL, class, and type and with
|
||||
the specified rdatas in text format.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue