mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-03 01:53:24 +08:00
Bump setuptools to 69.1.* (#11423)
This commit is contained in:
@@ -33,7 +33,7 @@ class test(Command):
|
||||
@NonDataProperty
|
||||
def test_args(self) -> list[str]: ...
|
||||
def with_project_on_sys_path(self, func) -> None: ...
|
||||
def project_on_sys_path(self, include_dists=[]): ...
|
||||
def project_on_sys_path(self, include_dists=()): ...
|
||||
@staticmethod
|
||||
def paths_on_pythonpath(paths) -> None: ...
|
||||
@staticmethod
|
||||
|
||||
0
stubs/setuptools/setuptools/compat/__init__.pyi
Normal file
0
stubs/setuptools/setuptools/compat/__init__.pyi
Normal file
9
stubs/setuptools/setuptools/compat/py310.pyi
Normal file
9
stubs/setuptools/setuptools/compat/py310.pyi
Normal file
@@ -0,0 +1,9 @@
|
||||
import sys
|
||||
|
||||
__all__ = ["tomllib"]
|
||||
|
||||
if sys.version_info >= (3, 11):
|
||||
import tomllib
|
||||
else:
|
||||
# This is actually vendored
|
||||
import tomli as tomllib # type: ignore[import-not-found] # pyright: ignore[reportMissingImports]
|
||||
@@ -1,3 +1,3 @@
|
||||
from _typeshed import Incomplete, StrOrBytesPath
|
||||
|
||||
def shutil_rmtree(path: StrOrBytesPath, ignore_errors: bool = False, onexc: Incomplete | None = None) -> None: ...
|
||||
def shutil_rmtree(path: StrOrBytesPath, ignore_errors: bool = False, onexc: Incomplete | None = None): ...
|
||||
Reference in New Issue
Block a user