diff options
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index f67bf63..98f63fb 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1138,6 +1138,27 @@ always available. system's identity. +.. data:: platlibdir + + Name of the platform-specific library directory. It is used to build the + path of platform-specific dynamic libraries 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 which gives the following ``sys.path`` + paths (where ``X.Y`` is the Python ``major.minor`` version): + + * ``/usr/lib64/pythonX.Y/``: + Standard library (like ``os.py`` of the :mod:`os` module) + * ``/usr/lib64/pythonX.Y/lib-dynload/``: + C extension modules of the standard library (like the :mod:`errno` module, + the exact filename is platform specific) + * ``/usr/lib/pythonX.Y/site-packages`` (always use ``lib``, not + :data:`sys.platlibdir`): Third-party modules + + .. versionadded:: 3.9 + + .. data:: prefix A string giving the site-specific directory prefix where the platform |