diff options
| author | Bob Halley <halley@dnspython.org> | 2020-05-01 13:06:19 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-05-01 13:06:19 -0700 |
| commit | 03f5906b4754fe0bab7af72b2ce5b713f7fd06e4 (patch) | |
| tree | bc97e64b5d1e53b7d6fc45739019a51abbfbd7c6 /dns/query.pyi | |
| parent | 84b83f9f2c08ad66597420753dc9671d21d6a37c (diff) | |
| download | dnspython-03f5906b4754fe0bab7af72b2ce5b713f7fd06e4.tar.gz | |
add missing type declarations
Diffstat (limited to 'dns/query.pyi')
| -rw-r--r-- | dns/query.pyi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dns/query.pyi b/dns/query.pyi index 37bdd46..2ca3a15 100644 --- a/dns/query.pyi +++ b/dns/query.pyi @@ -13,6 +13,8 @@ except ImportError: class ssl(object): # type: ignore SSLContext : Dict = {} +have_doh: bool + def https(q : message.Message, where: str, timeout : Optional[float] = None, port : Optional[int] = 443, af : Optional[int] = None, source : Optional[str] = None, source_port : Optional[int] = 0, session: Optional[Session] = None, path : Optional[str] = '/dns-query', post : Optional[bool] = True, bootstrap_address : Optional[str] = None, verify : Optional[bool] = True) -> message.Message: pass |
