mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +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:
@@ -3,14 +3,14 @@ from types import ModuleType
|
||||
from typing import Any
|
||||
|
||||
class _TempModule:
|
||||
mod_name: str = ...
|
||||
module: ModuleType = ...
|
||||
mod_name: str
|
||||
module: ModuleType
|
||||
def __init__(self, mod_name: str) -> None: ...
|
||||
def __enter__(self: Self) -> Self: ...
|
||||
def __exit__(self, *args: Any) -> None: ...
|
||||
|
||||
class _ModifiedArgv0:
|
||||
value: Any = ...
|
||||
value: Any
|
||||
def __init__(self, value: Any) -> None: ...
|
||||
def __enter__(self) -> None: ...
|
||||
def __exit__(self, *args: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user