Files
typeshed/stdlib/xxlimited.pyi
Shantanu a6d9b83263 Add @final to several more stdlib classes (#7215)
Co-authored-by: hauntsaninja <>
2022-02-14 15:12:40 -08:00

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: ...