massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / register.pyi
1 from typing import Any
2
3 from ..config import PyPIRCCommand
4
5 class register(PyPIRCCommand):
6     description: str
7     sub_commands: Any
8     list_classifiers: int
9     strict: int
10     def initialize_options(self) -> None: ...
11     def finalize_options(self) -> None: ...
12     def run(self) -> None: ...
13     def check_metadata(self) -> None: ...
14     def classifiers(self) -> None: ...
15     def verify_metadata(self) -> None: ...
16     def send_metadata(self) -> None: ...
17     def build_post_data(self, action): ...
18     def post_to_server(self, data, auth: Any | None = ...): ...