mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
stdlib: fix many attributes which are read-only at runtime but read-write in the stub (#7395)
This commit is contained in:
@@ -181,10 +181,14 @@ class InvalidMailbox(TokenList):
|
||||
token_type: str
|
||||
@property
|
||||
def display_name(self) -> None: ...
|
||||
local_part: None
|
||||
domain: None
|
||||
route: None
|
||||
addr_spec: None
|
||||
@property
|
||||
def local_part(self) -> None: ...
|
||||
@property
|
||||
def domain(self) -> None: ...
|
||||
@property
|
||||
def route(self) -> None: ...
|
||||
@property
|
||||
def addr_spec(self) -> None: ...
|
||||
|
||||
class Domain(TokenList):
|
||||
token_type: str
|
||||
|
||||
Reference in New Issue
Block a user