mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-27 05:12:10 +08:00
drop ellipsis assignments from module vars, classvars and instance attrs (#5914)
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
This commit is contained in:
@@ -127,10 +127,10 @@ class _HTTPConnectionProtocol(Protocol):
|
||||
) -> HTTPConnection: ...
|
||||
|
||||
class HTTPConnection:
|
||||
auto_open: int = ... # undocumented
|
||||
debuglevel: int = ...
|
||||
default_port: int = ... # undocumented
|
||||
response_class: Type[HTTPResponse] = ... # undocumented
|
||||
auto_open: int # undocumented
|
||||
debuglevel: int
|
||||
default_port: int # undocumented
|
||||
response_class: Type[HTTPResponse] # undocumented
|
||||
timeout: float | None
|
||||
host: str
|
||||
port: int
|
||||
|
||||
Reference in New Issue
Block a user