Mark httplib2 as complete (#9311)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Nikita Sobolev
2022-12-01 18:21:01 +03:00
committed by GitHub
parent 91c72cffd1
commit 3c9d1bd942
2 changed files with 5 additions and 1 deletions

View File

@@ -1 +1,4 @@
version = "0.21.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -1,7 +1,7 @@
import http.client
from _typeshed import Self
from collections.abc import Generator
from typing import Any
from typing import Any, ClassVar
from .error import *
@@ -48,6 +48,7 @@ class HmacDigestAuthentication(Authentication):
hashmod: Any
pwhashmod: Any
key: Any
__author__: ClassVar[str]
def __init__(self, credentials, host, request_uri, headers, response, content, http) -> None: ...
def request(self, method, request_uri, headers, content) -> None: ...
def response(self, response, content): ...