summaryrefslogtreecommitdiff
path: root/dns/name.pyi
diff options
context:
space:
mode:
Diffstat (limited to 'dns/name.pyi')
-rw-r--r--dns/name.pyi3
1 files changed, 2 insertions, 1 deletions
diff --git a/dns/name.pyi b/dns/name.pyi
index 2fc37ad..446600b 100644
--- a/dns/name.pyi
+++ b/dns/name.pyi
@@ -18,7 +18,8 @@ class Name:
def to_text(self, omit_final_dot=False) -> str: ...
def to_unicode(self, omit_final_dot=False, idna_codec=None) -> str: ...
def to_digestable(self, origin=None) -> bytes: ...
- def to_wire(self, file=None, compress=None, origin=None) -> Optional[bytes]: ...
+ def to_wire(self, file=None, compress=None, origin=None,
+ canonicalize=False) -> Optional[bytes]: ...
def __add__(self, other : Name): ...
def __sub__(self, other : Name): ...
def split(self, depth) -> List[Tuple[str,str]]: ...