Remove stubs for stdlib-list (#11111)

This commit is contained in:
Alex Waygood
2023-12-06 16:41:45 +00:00
committed by GitHub
parent db3024d2e7
commit d8c174d26a
5 changed files with 0 additions and 25 deletions

View File

@@ -1,2 +0,0 @@
# looks like developer tooling that's not part of the public API
stdlib_list.fetch

View File

@@ -1,3 +0,0 @@
version = "0.8.*"
upstream_repository = "https://github.com/pypi/stdlib-list"
obsolete_since = "0.9.0" # Released on 2023-06-22

View File

@@ -1,9 +0,0 @@
from .base import (
get_canonical_version as get_canonical_version,
in_stdlib as in_stdlib,
long_versions as long_versions,
short_versions as short_versions,
stdlib_list as stdlib_list,
)
__version__: str

View File

@@ -1,5 +0,0 @@
from typing import Any
version_json: str
def get_versions() -> dict[str, Any]: ...

View File

@@ -1,6 +0,0 @@
long_versions: list[str]
short_versions: list[str]
def get_canonical_version(version: str) -> str: ...
def stdlib_list(version: str | None = None) -> list[str]: ...
def in_stdlib(module_name: str, version: str | None = None) -> bool: ...