massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / config.pyi
1 from abc import abstractmethod
2 from distutils.cmd import Command
3 from typing import ClassVar
4
5 DEFAULT_PYPIRC: str
6
7 class PyPIRCCommand(Command):
8     DEFAULT_REPOSITORY: ClassVar[str]
9     DEFAULT_REALM: ClassVar[str]
10     repository: None
11     realm: None
12     user_options: ClassVar[list[tuple[str, str | None, str]]]
13     boolean_options: ClassVar[list[str]]
14     def initialize_options(self) -> None: ...
15     def finalize_options(self) -> None: ...
16     @abstractmethod
17     def run(self) -> None: ...