mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
19 lines
294 B
Python
19 lines
294 B
Python
import sys
|
|
from typing import Any
|
|
|
|
class Str: ...
|
|
|
|
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: ...
|