From: Steven Silvester Date: Thu, 3 Feb 2022 23:03:17 +0000 (-0600) Subject: Add missing types to exceptions stub X-Git-Tag: v2.3.0rc1~139^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F778%2Fhead;p=thirdparty%2Fdnspython.git Add missing types to exceptions stub --- diff --git a/dns/exception.pyi b/dns/exception.pyi index b29bfbea..dc571264 100644 --- a/dns/exception.pyi +++ b/dns/exception.pyi @@ -8,3 +8,5 @@ class DNSException(Exception): class SyntaxError(DNSException): ... class FormError(DNSException): ... class Timeout(DNSException): ... +class TooBig(DNSException): ... +class UnexpectedEnd(SyntaxError): ...