mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-06 18:07:39 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -14,10 +14,10 @@ from sre_constants import (
|
||||
_NamedIntConstant,
|
||||
)
|
||||
from sre_parse import SubPattern
|
||||
from typing import Any, List, Pattern, Union
|
||||
from typing import Any, List, Pattern
|
||||
|
||||
MAXCODE: int
|
||||
|
||||
def dis(code: List[_NamedIntConstant]) -> None: ...
|
||||
def isstring(obj: Any) -> bool: ...
|
||||
def compile(p: Union[str, bytes, SubPattern], flags: int = ...) -> Pattern[Any]: ...
|
||||
def compile(p: str | bytes | SubPattern, flags: int = ...) -> Pattern[Any]: ...
|
||||
|
||||
Reference in New Issue
Block a user