Update SOABI PEP to reflect config var change (#16754).
Thanks to Arfrever Frehtes Taifersar Arahesis for the patch.
This commit is contained in:
parent
4b31a87366
commit
dfefeac5ce
|
@ -130,12 +130,12 @@ The shared library file name tag is used unconditionally; it cannot be
|
||||||
changed. The tag and extension module suffix are available through
|
changed. The tag and extension module suffix are available through
|
||||||
the ``sysconfig`` modules via the following variables::
|
the ``sysconfig`` modules via the following variables::
|
||||||
|
|
||||||
>>> sysconfig.get_config_var('SO')
|
>>> sysconfig.get_config_var('EXT_SUFFIX')
|
||||||
'.cpython-32mu.so'
|
'.cpython-32mu.so'
|
||||||
>>> sysconfig.get_config_var('SOABI')
|
>>> sysconfig.get_config_var('SOABI')
|
||||||
'cpython-32mu'
|
'cpython-32mu'
|
||||||
|
|
||||||
Note that ``$SOABI`` contains just the tag, while ``$SO`` includes the
|
Note that ``$SOABI`` contains just the tag, while ``$EXT_SUFFIX`` includes the
|
||||||
platform extension for shared library files, and is the exact suffix
|
platform extension for shared library files, and is the exact suffix
|
||||||
added to the extension module name.
|
added to the extension module name.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue