mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
22 lines
338 B
Python
22 lines
338 B
Python
import sys
|
|
from typing import Any
|
|
from typing_extensions import final
|
|
|
|
class Str: ...
|
|
|
|
@final
|
|
class Xxo:
|
|
def demo(self) -> None: ...
|
|
|
|
def foo(__i: int, __j: int) -> Any: ...
|
|
def new() -> Xxo: ...
|
|
|
|
if sys.version_info >= (3, 10):
|
|
class Error: ...
|
|
|
|
else:
|
|
class error: ...
|
|
class Null: ...
|
|
|
|
def roj(__b: Any) -> None: ...
|