mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
from typing import ClassVar, Iterable, NoReturn, Optional
|
||||
from typing import ClassVar, Iterable, NoReturn
|
||||
from typing_extensions import Literal
|
||||
|
||||
class Quitter:
|
||||
name: str
|
||||
eof: str
|
||||
def __init__(self, name: str, eof: str) -> None: ...
|
||||
def __call__(self, code: Optional[int] = ...) -> NoReturn: ...
|
||||
def __call__(self, code: int | None = ...) -> NoReturn: ...
|
||||
|
||||
class _Printer:
|
||||
MAXLINES: ClassVar[Literal[23]]
|
||||
|
||||
Reference in New Issue
Block a user