diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-05-28 16:33:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-28 16:33:04 (GMT) |
commit | 242d95659b6b4ff4fb54b58a30454dafa311d4e9 (patch) | |
tree | 999eef2822752395e230a2c608fe3b669042d6bd /Misc/NEWS.d/3.9.0a5.rst | |
parent | fda7f6d61b13c68f59806db674e892fda4013348 (diff) | |
download | cpython-242d95659b6b4ff4fb54b58a30454dafa311d4e9.zip cpython-242d95659b6b4ff4fb54b58a30454dafa311d4e9.tar.gz cpython-242d95659b6b4ff4fb54b58a30454dafa311d4e9.tar.bz2 |
bpo-1294959: Try to clarify the meaning of platlibdir (GH-20332)
Try to make the meaning of platlibdir clear. The previous wording could
be misinterpreted to suggest that it will be used to find all shared
libraries on the system, and not just Python extensions. Furthermore,
it was unclear whether it affects third-party (site-packages) extensions
or not. The new wording tries to make its dual purpose clear,
and provide the additional example of extensions in site-packages.
Diffstat (limited to 'Misc/NEWS.d/3.9.0a5.rst')
-rw-r--r-- | Misc/NEWS.d/3.9.0a5.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.9.0a5.rst b/Misc/NEWS.d/3.9.0a5.rst index 7e2eaa3..01cbd44 100644 --- a/Misc/NEWS.d/3.9.0a5.rst +++ b/Misc/NEWS.d/3.9.0a5.rst @@ -990,7 +990,7 @@ modules are built. Add ``--with-platlibdir`` option to the configure script: name of the platform-specific library directory, stored in the new :attr:`sys.platlibdir` attribute. It is used to build the path of -platform-specific dynamic libraries and the path of the standard library. It +platform-specific extension modules and the path of the standard library. It is equal to ``"lib"`` on most platforms. On Fedora and SuSE, it is equal to ``"lib64"`` on 64-bit platforms. Patch by Jan Matějek, Matěj Cepl, Charalampos Stratakis and Victor Stinner. |