Skip to content

Commit 9a4c8d4

Browse files
committed
Runtime typing fixes for typeshed return type merge
1 parent e622859 commit 9a4c8d4

16 files changed

+42
-45
lines changed

setuptools/build_meta.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ def patch(cls):
9191
for the duration of this context.
9292
"""
9393
orig = distutils.core.Distribution
94-
distutils.core.Distribution = cls
94+
distutils.core.Distribution = cls # type: ignore[misc] # monkeypatching
9595
try:
9696
yield
9797
finally:
98-
distutils.core.Distribution = orig
98+
distutils.core.Distribution = orig # type: ignore[misc] # monkeypatching
9999

100100

101101
@contextlib.contextmanager

setuptools/command/bdist_egg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def zip_safe(self):
277277
log.warn("zip_safe flag not set; analyzing archive contents...")
278278
return analyze_egg(self.bdist_dir, self.stubs)
279279

280-
def gen_header(self) -> str:
280+
def gen_header(self) -> Literal["w"]:
281281
return 'w'
282282

283283
def copy_metadata_to(self, target_dir) -> None:

setuptools/command/bdist_wheel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class bdist_wheel(Command):
218218

219219
def initialize_options(self) -> None:
220220
self.bdist_dir: str | None = None
221-
self.data_dir: str | None = None
221+
self.data_dir = ""
222222
self.plat_name: str | None = None
223223
self.plat_tag: str | None = None
224224
self.format = "zip"

setuptools/command/build_ext.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class build_ext(_build_ext):
9595

9696
def run(self):
9797
"""Build extensions in build directory, then copy if --inplace"""
98-
old_inplace, self.inplace = self.inplace, 0
98+
old_inplace, self.inplace = self.inplace, False
9999
_build_ext.run(self)
100100
self.inplace = old_inplace
101101
if old_inplace:
@@ -248,7 +248,7 @@ def setup_shlib_compiler(self):
248248
compiler.set_link_objects(self.link_objects)
249249

250250
# hack so distutils' build_extension() builds a library instead
251-
compiler.link_shared_object = link_shared_object.__get__(compiler)
251+
compiler.link_shared_object = link_shared_object.__get__(compiler) # type: ignore[method-assign]
252252

253253
def get_export_symbols(self, ext):
254254
if isinstance(ext, Library):

setuptools/command/build_py.py

+9-14
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,14 @@ class build_py(orig.build_py):
3939

4040
distribution: Distribution # override distutils.dist.Distribution with setuptools.dist.Distribution
4141
editable_mode: bool = False
42-
existing_egg_info_dir: str | None = None #: Private API, internal use only.
42+
existing_egg_info_dir: StrPath | None = None #: Private API, internal use only.
4343

4444
def finalize_options(self):
4545
orig.build_py.finalize_options(self)
4646
self.package_data = self.distribution.package_data
4747
self.exclude_package_data = self.distribution.exclude_package_data or {}
4848
if 'data_files' in self.__dict__:
4949
del self.__dict__['data_files']
50-
self.__updated_files = []
5150

5251
def copy_file( # type: ignore[override] # No overload, no bytes support
5352
self,
@@ -89,12 +88,6 @@ def __getattr__(self, attr: str):
8988
return self.data_files
9089
return orig.build_py.__getattr__(self, attr)
9190

92-
def build_module(self, module, module_file, package):
93-
outfile, copied = orig.build_py.build_module(self, module, module_file, package)
94-
if copied:
95-
self.__updated_files.append(outfile)
96-
return outfile, copied
97-
9891
def _get_data_files(self):
9992
"""Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
10093
self.analyze_manifest()
@@ -178,17 +171,17 @@ def build_package_data(self) -> None:
178171
_outf, _copied = self.copy_file(srcfile, target)
179172
make_writable(target)
180173

181-
def analyze_manifest(self):
182-
self.manifest_files = mf = {}
174+
def analyze_manifest(self) -> None:
175+
self.manifest_files: dict[str, list[str]] = {}
183176
if not self.distribution.include_package_data:
184177
return
185-
src_dirs = {}
178+
src_dirs: dict[str, str] = {}
186179
for package in self.packages or ():
187180
# Locate package source directory
188181
src_dirs[assert_relative(self.get_package_dir(package))] = package
189182

190183
if (
191-
getattr(self, 'existing_egg_info_dir', None)
184+
self.existing_egg_info_dir
192185
and Path(self.existing_egg_info_dir, "SOURCES.txt").exists()
193186
):
194187
egg_info_dir = self.existing_egg_info_dir
@@ -217,9 +210,11 @@ def analyze_manifest(self):
217210
importable = check.importable_subpackage(src_dirs[d], f)
218211
if importable:
219212
check.warn(importable)
220-
mf.setdefault(src_dirs[d], []).append(path)
213+
self.manifest_files.setdefault(src_dirs[d], []).append(path)
221214

222-
def _filter_build_files(self, files: Iterable[str], egg_info: str) -> Iterator[str]:
215+
def _filter_build_files(
216+
self, files: Iterable[str], egg_info: StrPath
217+
) -> Iterator[str]:
223218
"""
224219
``build_meta`` may try to create egg_info outside of the project directory,
225220
and this can be problematic for certain plugins (reported in issue #3500).

setuptools/command/easy_install.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def _render_version():
238238
print(f'setuptools {dist.version} from {dist.location} (Python {ver})')
239239
raise SystemExit
240240

241-
def finalize_options(self): # noqa: C901 # is too complex (25) # FIXME
241+
def finalize_options(self) -> None: # noqa: C901 # is too complex (25) # FIXME
242242
self.version and self._render_version()
243243

244244
py_version = sys.version.split()[0]
@@ -354,7 +354,7 @@ def finalize_options(self): # noqa: C901 # is too complex (25) # FIXME
354354
"No urls, filenames, or requirements specified (see --help)"
355355
)
356356

357-
self.outputs = []
357+
self.outputs: list[str] = []
358358

359359
@staticmethod
360360
def _process_site_dirs(site_dirs):

setuptools/command/editable_wheel.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -779,12 +779,12 @@ def _empty_dir(dir_: _P) -> _P:
779779

780780

781781
class _NamespaceInstaller(namespaces.Installer):
782-
def __init__(self, distribution, installation_dir, editable_name, src_root):
782+
def __init__(self, distribution, installation_dir, editable_name, src_root) -> None:
783783
self.distribution = distribution
784784
self.src_root = src_root
785785
self.installation_dir = installation_dir
786786
self.editable_name = editable_name
787-
self.outputs = []
787+
self.outputs: list[str] = []
788788
self.dry_run = False
789789

790790
def _get_nspkg_file(self):

setuptools/command/egg_info.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import re
88
import sys
99
import time
10+
from collections.abc import Callable
1011

1112
import packaging
1213
import packaging.requirements
@@ -330,15 +331,15 @@ def __init__(
330331
super().__init__(warn, debug_print)
331332
self.ignore_egg_info_dir = ignore_egg_info_dir
332333

333-
def process_template_line(self, line):
334+
def process_template_line(self, line) -> None:
334335
# Parse the line: split it up, make sure the right number of words
335336
# is there, and return the relevant words. 'action' is always
336337
# defined: it's the first word of the line. Which of the other
337338
# three are defined depends on the action; it'll be either
338339
# patterns, (dir and patterns), or (dir_pattern).
339340
(action, patterns, dir, dir_pattern) = self._parse_template_line(line)
340341

341-
action_map = {
342+
action_map: dict[str, Callable] = {
342343
'include': self.include,
343344
'exclude': self.exclude,
344345
'global-include': self.global_include,

setuptools/command/install_egg_info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ class install_egg_info(namespaces.Installer, Command):
2020
def initialize_options(self):
2121
self.install_dir = None
2222

23-
def finalize_options(self):
23+
def finalize_options(self) -> None:
2424
self.set_undefined_options('install_lib', ('install_dir', 'install_dir'))
2525
ei_cmd = self.get_finalized_command("egg_info")
2626
basename = f"{ei_cmd._get_egg_basename()}.egg-info"
2727
self.source = ei_cmd.egg_info
2828
self.target = os.path.join(self.install_dir, basename)
29-
self.outputs = []
29+
self.outputs: list[str] = []
3030

3131
def run(self) -> None:
3232
self.run_command('egg_info')

setuptools/command/saveopts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ class saveopts(option_base):
66

77
description = "save supplied options to setup.cfg or other config file"
88

9-
def run(self):
9+
def run(self) -> None:
1010
dist = self.distribution
11-
settings = {}
11+
settings: dict[str, dict[str, str]] = {}
1212

1313
for cmd in dist.command_options:
1414
if cmd == 'saveopts':

setuptools/command/sdist.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ def read_manifest(self):
202202
"""
203203
log.info("reading manifest file '%s'", self.manifest)
204204
manifest = open(self.manifest, 'rb')
205-
for line in manifest:
205+
for bytes_line in manifest:
206206
# The manifest must contain UTF-8. See #303.
207207
try:
208-
line = line.decode('UTF-8')
208+
line = bytes_line.decode('UTF-8')
209209
except UnicodeDecodeError:
210210
log.warn("%r not UTF-8 decodable -- skipping" % line)
211211
continue

setuptools/command/setopt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def edit_config(filename, settings, dry_run=False):
3737
"""
3838
log.debug("Reading configuration from %s", filename)
3939
opts = configparser.RawConfigParser()
40-
opts.optionxform = lambda x: x
40+
opts.optionxform = lambda optionstr: optionstr # type: ignore[method-assign] # overriding method
4141
_cfg_read_utf8_with_fallback(opts, filename)
4242

4343
for section, options in settings.items():

setuptools/dist.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@ def _parse_command_opts(self, parser, args):
904904

905905
return nargs
906906

907-
def get_cmdline_options(self):
907+
def get_cmdline_options(self) -> dict[str, dict[str, str | None]]:
908908
"""Return a '{cmd: {opt:val}}' map of all command-line options
909909
910910
Option names are all long, but do not include the leading '--', and
@@ -914,9 +914,10 @@ def get_cmdline_options(self):
914914
Note that options provided by config files are intentionally excluded.
915915
"""
916916

917-
d = {}
917+
d: dict[str, dict[str, str | None]] = {}
918918

919919
for cmd, opts in self.command_options.items():
920+
val: str | None
920921
for opt, (src, val) in opts.items():
921922
if src != "command line":
922923
continue

setuptools/monkey.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def patch_all():
7373
import setuptools
7474

7575
# we can't patch distutils.cmd, alas
76-
distutils.core.Command = setuptools.Command
76+
distutils.core.Command = setuptools.Command # type: ignore[misc,assignment] # monkeypatching
7777

7878
_patch_distribution_metadata()
7979

@@ -82,8 +82,8 @@ def patch_all():
8282
module.Distribution = setuptools.dist.Distribution
8383

8484
# Install the patched Extension
85-
distutils.core.Extension = setuptools.extension.Extension
86-
distutils.extension.Extension = setuptools.extension.Extension
85+
distutils.core.Extension = setuptools.extension.Extension # type: ignore[misc,assignment] # monkeypatching
86+
distutils.extension.Extension = setuptools.extension.Extension # type: ignore[misc,assignment] # monkeypatching
8787
if 'distutils.command.build_ext' in sys.modules:
8888
sys.modules[
8989
'distutils.command.build_ext'

setuptools/msvc.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def find_reg_vs_vers(self):
426426
vs_vers.append(ver)
427427
return sorted(vs_vers)
428428

429-
def find_programdata_vs_vers(self):
429+
def find_programdata_vs_vers(self) -> dict[float, str]:
430430
r"""
431431
Find Visual studio 2017+ versions from information in
432432
"C:\ProgramData\Microsoft\VisualStudio\Packages\_Instances".
@@ -436,7 +436,7 @@ def find_programdata_vs_vers(self):
436436
dict
437437
float version as key, path as value.
438438
"""
439-
vs_versions = {}
439+
vs_versions: dict[float, str] = {}
440440
instances_dir = r'C:\ProgramData\Microsoft\VisualStudio\Packages\_Instances'
441441

442442
try:
@@ -607,7 +607,7 @@ def WindowsSdkLastVersion(self):
607607
return self._use_last_dir_name(os.path.join(self.WindowsSdkDir, 'lib'))
608608

609609
@property
610-
def WindowsSdkDir(self): # noqa: C901 # is too complex (12) # FIXME
610+
def WindowsSdkDir(self) -> str | None: # noqa: C901 # is too complex (12) # FIXME
611611
"""
612612
Microsoft Windows SDK directory.
613613
@@ -616,7 +616,7 @@ def WindowsSdkDir(self): # noqa: C901 # is too complex (12) # FIXME
616616
str
617617
path
618618
"""
619-
sdkdir = ''
619+
sdkdir: str | None = ''
620620
for ver in self.WindowsSdkVersion:
621621
# Try to get it from registry
622622
loc = os.path.join(self.ri.windows_sdk, 'v%s' % ver)

setuptools/unicode_utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22
import unicodedata
3-
from configparser import ConfigParser
3+
from configparser import RawConfigParser
44

55
from .compat import py39
66
from .warnings import SetuptoolsDeprecationWarning
@@ -65,10 +65,10 @@ def _read_utf8_with_fallback(file: str, fallback_encoding=py39.LOCALE_ENCODING)
6565

6666

6767
def _cfg_read_utf8_with_fallback(
68-
cfg: ConfigParser, file: str, fallback_encoding=py39.LOCALE_ENCODING
68+
cfg: RawConfigParser, file: str, fallback_encoding=py39.LOCALE_ENCODING
6969
) -> None:
7070
"""Same idea as :func:`_read_utf8_with_fallback`, but for the
71-
:meth:`ConfigParser.read` method.
71+
:meth:`RawConfigParser.read` method.
7272
7373
This method may call ``cfg.clear()``.
7474
"""

0 commit comments

Comments
 (0)