mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Fix HTTPConnection.putrequest parameter names (#3101)
This commit is contained in:
committed by
Sebastian Rittau
parent
3e700224ba
commit
4af283e1ac
@@ -181,7 +181,7 @@ class HTTPConnection:
|
||||
headers: Optional[Mapping[str, str]] = ...) -> None: ...
|
||||
def connect(self) -> None: ...
|
||||
def close(self) -> None: ...
|
||||
def putrequest(self, request: str, selector: str, skip_host: bool = ...,
|
||||
def putrequest(self, method: str, url: str, skip_host: bool = ...,
|
||||
skip_accept_encoding: bool = ...) -> None: ...
|
||||
def putheader(self, header: str, *argument: str) -> None: ...
|
||||
if sys.version_info >= (3, 6):
|
||||
|
||||
Reference in New Issue
Block a user