Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 28, 2024
2 parents 2adbd4f + f3b2254 commit aa30da4
Show file tree
Hide file tree
Showing 111 changed files with 5,699 additions and 663 deletions.
46 changes: 23 additions & 23 deletions docs/deprecated/distutils/apiref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ This module provides the following functions.
are not given.


.. function:: new_compiler(plat=None, compiler=None, verbose=0, dry_run=0, force=0)
.. function:: new_compiler(plat=None, compiler=None, verbose=False, dry_run=False, force=False)

Factory function to generate an instance of some CCompiler subclass for the
supplied platform/compiler combination. *plat* defaults to ``os.name`` (eg.
Expand All @@ -383,7 +383,7 @@ This module provides the following functions.
to :command:`build`, :command:`build_ext`, :command:`build_clib`).


.. class:: CCompiler([verbose=0, dry_run=0, force=0])
.. class:: CCompiler([verbose=False, dry_run=False, force=False])

The abstract base class :class:`CCompiler` defines the interface that must be
implemented by real compiler classes. The class also has some utility methods
Expand Down Expand Up @@ -517,7 +517,7 @@ This module provides the following functions.
list) to do the job.


.. method:: CCompiler.find_library_file(dirs, lib[, debug=0])
.. method:: CCompiler.find_library_file(dirs, lib[, debug=False])

Search the specified list of directories for a static or shared library file
*lib* and return the full path to that file. If *debug* is true, look for a
Expand Down Expand Up @@ -580,7 +580,7 @@ This module provides the following functions.
The following methods invoke stages in the build process.


.. method:: CCompiler.compile(sources[, output_dir=None, macros=None, include_dirs=None, debug=0, extra_preargs=None, extra_postargs=None, depends=None])
.. method:: CCompiler.compile(sources[, output_dir=None, macros=None, include_dirs=None, debug=False, extra_preargs=None, extra_postargs=None, depends=None])

Compile one or more source files. Generates object files (e.g. transforms a
:file:`.c` file to a :file:`.o` file.)
Expand Down Expand Up @@ -624,7 +624,7 @@ This module provides the following functions.
Raises :exc:`CompileError` on failure.


.. method:: CCompiler.create_static_lib(objects, output_libname[, output_dir=None, debug=0, target_lang=None])
.. method:: CCompiler.create_static_lib(objects, output_libname[, output_dir=None, debug=False, target_lang=None])

Link a bunch of stuff together to create a static library file. The "bunch of
stuff" consists of the list of object files supplied as *objects*, the extra
Expand All @@ -648,7 +648,7 @@ This module provides the following functions.
Raises :exc:`LibError` on failure.


.. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, export_symbols=None, debug=0, extra_preargs=None, extra_postargs=None, build_temp=None, target_lang=None])
.. method:: CCompiler.link(target_desc, objects, output_filename[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, export_symbols=None, debug=False, extra_preargs=None, extra_postargs=None, build_temp=None, target_lang=None])

Link a bunch of stuff together to create an executable or shared library file.

Expand Down Expand Up @@ -690,21 +690,21 @@ This module provides the following functions.
Raises :exc:`LinkError` on failure.


.. method:: CCompiler.link_executable(objects, output_progname[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, debug=0, extra_preargs=None, extra_postargs=None, target_lang=None])
.. method:: CCompiler.link_executable(objects, output_progname[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, debug=False, extra_preargs=None, extra_postargs=None, target_lang=None])

Link an executable. *output_progname* is the name of the file executable, while
*objects* are a list of object filenames to link in. Other arguments are as for
the :meth:`link` method.


.. method:: CCompiler.link_shared_lib(objects, output_libname[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, export_symbols=None, debug=0, extra_preargs=None, extra_postargs=None, build_temp=None, target_lang=None])
.. method:: CCompiler.link_shared_lib(objects, output_libname[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, export_symbols=None, debug=False, extra_preargs=None, extra_postargs=None, build_temp=None, target_lang=None])

Link a shared library. *output_libname* is the name of the output library,
while *objects* is a list of object filenames to link in. Other arguments are
as for the :meth:`link` method.


.. method:: CCompiler.link_shared_object(objects, output_filename[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, export_symbols=None, debug=0, extra_preargs=None, extra_postargs=None, build_temp=None, target_lang=None])
.. method:: CCompiler.link_shared_object(objects, output_filename[, output_dir=None, libraries=None, library_dirs=None, runtime_library_dirs=None, export_symbols=None, debug=False, extra_preargs=None, extra_postargs=None, build_temp=None, target_lang=None])

Link a shared object. *output_filename* is the name of the shared object that
will be created, while *objects* is a list of object filenames to link in.
Expand All @@ -726,28 +726,28 @@ This module provides the following functions.
use by the various concrete subclasses.


.. method:: CCompiler.executable_filename(basename[, strip_dir=0, output_dir=''])
.. method:: CCompiler.executable_filename(basename[, strip_dir=False, output_dir=''])

Returns the filename of the executable for the given *basename*. Typically for
non-Windows platforms this is the same as the basename, while Windows will get
a :file:`.exe` added.


.. method:: CCompiler.library_filename(libname[, lib_type='static', strip_dir=0, output_dir=''])
.. method:: CCompiler.library_filename(libname[, lib_type='static', strip_dir=False, output_dir=''])

Returns the filename for the given library name on the current platform. On Unix
a library with *lib_type* of ``'static'`` will typically be of the form
:file:`liblibname.a`, while a *lib_type* of ``'dynamic'`` will be of the form
:file:`liblibname.so`.


.. method:: CCompiler.object_filenames(source_filenames[, strip_dir=0, output_dir=''])
.. method:: CCompiler.object_filenames(source_filenames[, strip_dir=False, output_dir=''])

Returns the name of the object files for the given source files.
*source_filenames* should be a list of filenames.


.. method:: CCompiler.shared_object_filename(basename[, strip_dir=0, output_dir=''])
.. method:: CCompiler.shared_object_filename(basename[, strip_dir=False, output_dir=''])

Returns the name of a shared object file for the given file name *basename*.

Expand Down Expand Up @@ -884,7 +884,7 @@ This module provides a few functions for creating archive files, such as
tarballs or zipfiles.


.. function:: make_archive(base_name, format[, root_dir=None, base_dir=None, verbose=0, dry_run=0])
.. function:: make_archive(base_name, format[, root_dir=None, base_dir=None, verbose=False, dry_run=False])

Create an archive file (eg. ``zip`` or ``tar``). *base_name* is the name of
the file to create, minus any format-specific extension; *format* is the
Expand All @@ -900,7 +900,7 @@ tarballs or zipfiles.
Added support for the ``xztar`` format.


.. function:: make_tarball(base_name, base_dir[, compress='gzip', verbose=0, dry_run=0])
.. function:: make_tarball(base_name, base_dir[, compress='gzip', verbose=False, dry_run=False])

'Create an (optional compressed) archive as a tar file from all files in and
under *base_dir*. *compress* must be ``'gzip'`` (the default),
Expand All @@ -915,7 +915,7 @@ tarballs or zipfiles.
Added support for the ``xz`` compression.


.. function:: make_zipfile(base_name, base_dir[, verbose=0, dry_run=0])
.. function:: make_zipfile(base_name, base_dir[, verbose=False, dry_run=False])

Create a zip file from all files in and under *base_dir*. The output zip file
will be named *base_name* + :file:`.zip`. Uses either the :mod:`zipfile` Python
Expand Down Expand Up @@ -978,7 +978,7 @@ This module provides functions for operating on directories and trees of
directories.


.. function:: mkpath(name[, mode=0o777, verbose=0, dry_run=0])
.. function:: mkpath(name[, mode=0o777, verbose=False, dry_run=False])

Create a directory and any missing ancestor directories. If the directory
already exists (or if *name* is the empty string, which means the current
Expand All @@ -989,7 +989,7 @@ directories.
directories actually created.


.. function:: create_tree(base_dir, files[, mode=0o777, verbose=0, dry_run=0])
.. function:: create_tree(base_dir, files[, mode=0o777, verbose=False, dry_run=False])

Create all the empty directories under *base_dir* needed to put *files* there.
*base_dir* is just the name of a directory which doesn't necessarily exist
Expand All @@ -999,7 +999,7 @@ directories.
:func:`mkpath`.


.. function:: copy_tree(src, dst[, preserve_mode=1, preserve_times=1, preserve_symlinks=0, update=0, verbose=0, dry_run=0])
.. function:: copy_tree(src, dst[, preserve_mode=True, preserve_times=True, preserve_symlinks=False, update=False, verbose=False, dry_run=False])

Copy an entire directory tree *src* to a new location *dst*. Both *src* and
*dst* must be directory names. If *src* is not a directory, raise
Expand All @@ -1026,7 +1026,7 @@ directories.
.. versionchanged:: 3.3.1
NFS files are ignored.

.. function:: remove_tree(directory[, verbose=0, dry_run=0])
.. function:: remove_tree(directory[, verbose=False, dry_run=False])

Recursively remove *directory* and all files and directories underneath it. Any
errors are ignored (apart from being reported to ``sys.stdout`` if *verbose* is
Expand All @@ -1043,7 +1043,7 @@ directories.
This module contains some utility functions for operating on individual files.


.. function:: copy_file(src, dst[, preserve_mode=1, preserve_times=1, update=0, link=None, verbose=0, dry_run=0])
.. function:: copy_file(src, dst[, preserve_mode=True, preserve_times=True, update=False, link=None, verbose=False, dry_run=False])

Copy file *src* to *dst*. If *dst* is a directory, then *src* is copied there
with the same name; otherwise, it must be a filename. (If the file exists, it
Expand Down Expand Up @@ -1216,7 +1216,7 @@ other utility module.
.. % Should probably be moved into the standard library.
.. function:: execute(func, args[, msg=None, verbose=0, dry_run=0])
.. function:: execute(func, args[, msg=None, verbose=False, dry_run=False])

Perform some action that affects the outside world (for instance, writing to the
filesystem). Such actions are special because they are disabled by the
Expand All @@ -1234,7 +1234,7 @@ other utility module.
:exc:`ValueError` if *val* is anything else.


.. function:: byte_compile(py_files[, optimize=0, force=0, prefix=None, base_dir=None, verbose=1, dry_run=0, direct=None])
.. function:: byte_compile(py_files[, optimize=0, force=False, prefix=None, base_dir=None, verbose=True, dry_run=False, direct=None])

Byte-compile a collection of Python source files to :file:`.pyc` files in a
:file:`__pycache__` subdirectory (see :pep:`3147` and :pep:`488`).
Expand Down
2 changes: 1 addition & 1 deletion docs/deprecated/distutils/configfile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ configuration file for this distribution:
.. code-block:: ini
[build_ext]
inplace=1
inplace=true
This will affect all builds of this module distribution, whether or not you
explicitly specify :command:`build_ext`. If you include :file:`setup.cfg` in
Expand Down
2 changes: 1 addition & 1 deletion docs/deprecated/distutils/setupscript.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ search path, though, you can find that directory using the Distutils
:mod:`distutils.sysconfig` module::

from distutils.sysconfig import get_python_inc
incdir = os.path.join(get_python_inc(plat_specific=1), 'Numerical')
incdir = os.path.join(get_python_inc(plat_specific=True), 'Numerical')
setup(...,
Extension(..., include_dirs=[incdir]),
)
Expand Down
4 changes: 2 additions & 2 deletions setuptools/_distutils/_modified.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import os.path

from ._functools import splat
from .compat.py39 import zip_strict
from .errors import DistutilsFileError
from .py39compat import zip_strict


def _newer(source, target):
Expand All @@ -24,7 +24,7 @@ def newer(source, target):
Raises DistutilsFileError if 'source' does not exist.
"""
if not os.path.exists(source):
raise DistutilsFileError("file '%s' does not exist" % os.path.abspath(source))
raise DistutilsFileError(f"file '{os.path.abspath(source)}' does not exist")

return _newer(source, target)

Expand Down
10 changes: 5 additions & 5 deletions setuptools/_distutils/_msvccompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class MSVCCompiler(CCompiler):
static_lib_format = shared_lib_format = '%s%s'
exe_extension = '.exe'

def __init__(self, verbose=0, dry_run=0, force=0):
def __init__(self, verbose=False, dry_run=False, force=False):
super().__init__(verbose, dry_run, force)
# target platform (.plat_name is consistent with 'bdist')
self.plat_name = None
Expand Down Expand Up @@ -334,7 +334,7 @@ def compile( # noqa: C901
output_dir=None,
macros=None,
include_dirs=None,
debug=0,
debug=False,
extra_preargs=None,
extra_postargs=None,
depends=None,
Expand Down Expand Up @@ -423,7 +423,7 @@ def compile( # noqa: C901
return objects

def create_static_lib(
self, objects, output_libname, output_dir=None, debug=0, target_lang=None
self, objects, output_libname, output_dir=None, debug=False, target_lang=None
):
if not self.initialized:
self.initialize()
Expand Down Expand Up @@ -452,7 +452,7 @@ def link(
library_dirs=None,
runtime_library_dirs=None,
export_symbols=None,
debug=0,
debug=False,
extra_preargs=None,
extra_postargs=None,
build_temp=None,
Expand Down Expand Up @@ -551,7 +551,7 @@ def runtime_library_dir_option(self, dir):
def library_option(self, lib):
return self.library_filename(lib)

def find_library_file(self, dirs, lib, debug=0):
def find_library_file(self, dirs, lib, debug=False):
# Prefer a debugging library if found (and requested), but deal
# with it if we don't have one.
if debug:
Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This software is made available under the terms of *either* of the licenses
found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made
under the terms of *both* these licenses.
Loading

0 comments on commit aa30da4

Please sign in to comment.