mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-03-12 04:35:40 -07:00
* Bump dnspython from 2.0.0 to 2.2.0 Bumps [dnspython]() from 2.0.0 to 2.2.0. --- 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.2.0 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
20 lines
856 B
Python
20 lines
856 B
Python
from typing import Dict, Tuple, Any, Optional, BinaryIO
|
|
from .name import Name, IDNACodec
|
|
class Rdata:
|
|
def __init__(self):
|
|
self.address : str
|
|
def to_wire(self, file : Optional[BinaryIO], compress : Optional[Dict[Name,int]], origin : Optional[Name], canonicalize : Optional[bool]) -> Optional[bytes]:
|
|
...
|
|
@classmethod
|
|
def from_text(cls, rdclass : int, rdtype : int, tok, origin=None, relativize=True):
|
|
...
|
|
_rdata_modules : Dict[Tuple[Any,Rdata],Any]
|
|
|
|
def from_text(rdclass : int, rdtype : int, tok : Optional[str], origin : Optional[Name] = None,
|
|
relativize : bool = True, relativize_to : Optional[Name] = None,
|
|
idna_codec : Optional[IDNACodec] = None):
|
|
...
|
|
|
|
def from_wire(rdclass : int, rdtype : int, wire : bytes, current : int, rdlen : int, origin : Optional[Name] = None):
|
|
...
|