]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Add missing types to exceptions stub 778/head
authorSteven Silvester <steven.silvester@ieee.org>
Thu, 3 Feb 2022 23:03:17 +0000 (17:03 -0600)
committerGitHub <noreply@github.com>
Thu, 3 Feb 2022 23:03:17 +0000 (17:03 -0600)
dns/exception.pyi

index b29bfbea1b1cd02cca3f522becab3a87adebe79f..dc5712649f0560aad249eced5eac0972ba8b671a 100644 (file)
@@ -8,3 +8,5 @@ class DNSException(Exception):
 class SyntaxError(DNSException): ...
 class FormError(DNSException): ...
 class Timeout(DNSException): ...
+class TooBig(DNSException): ...
+class UnexpectedEnd(SyntaxError): ...