]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Add missing types to exceptions stub
authorSteven Silvester <steven.silvester@ieee.org>
Thu, 3 Feb 2022 23:03:17 +0000 (17:03 -0600)
committerBob Halley <halley@play-bow.org>
Fri, 4 Feb 2022 16:24:09 +0000 (08:24 -0800)
(cherry picked from commit 91838d2d488911972ddaf69aa0c507457ce4b03a)

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): ...