diff options
author | LumÃr 'Frenzy' Balhar <frenzy.madness@gmail.com> | 2021-04-23 12:02:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 12:02:41 (GMT) |
commit | 90d02e5e63e2cb8f66a2c0dd2ea8d7d4f45f4ebf (patch) | |
tree | 5279da33ebadd26e8040b394929cce64f861acab /Doc/distutils | |
parent | b9ad88be0304136c3fe5959c65a5d2c75490cd80 (diff) | |
download | cpython-90d02e5e63e2cb8f66a2c0dd2ea8d7d4f45f4ebf.zip cpython-90d02e5e63e2cb8f66a2c0dd2ea8d7d4f45f4ebf.tar.gz cpython-90d02e5e63e2cb8f66a2c0dd2ea8d7d4f45f4ebf.tar.bz2 |
bpo-41282: (PEP 632) Deprecate distutils.sysconfig (partial implementation of the PEP) (GH-23142)
This change:
* merges `distutils.sysconfig` into `sysconfig` while keeping the original functionality and
* marks `distutils.sysconfig` as deprecated
https://bugs.python.org/issue41282
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 6c69c11..e4437f4 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -1452,6 +1452,8 @@ name. .. module:: distutils.sysconfig :synopsis: Low-level access to configuration information of the Python interpreter. +.. deprecated:: 3.10 + :mod:`distutils.sysconfig` has been merged into :mod:`sysconfig`. .. moduleauthor:: Fred L. Drake, Jr. <fdrake@acm.org> .. moduleauthor:: Greg Ward <gward@python.net> .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> @@ -1510,6 +1512,9 @@ for other parts of the :mod:`distutils` package. meaning for other platforms will vary. The file is a platform-specific text file, if it exists. This function is only useful on POSIX platforms. +The following functions are deprecated together with this module and they +have no direct replacement. + .. function:: get_python_inc([plat_specific[, prefix]]) |