Update SOABI PEP to reflect config var change (#16754).

Thanks to Arfrever Frehtes Taifersar Arahesis for the patch.
This commit is contained in:
Éric Araujo 2014-03-17 16:32:35 -04:00
parent 4b31a87366
commit dfefeac5ce
1 changed files with 2 additions and 2 deletions

View File

@ -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
the ``sysconfig`` modules via the following variables::
>>> sysconfig.get_config_var('SO')
>>> sysconfig.get_config_var('EXT_SUFFIX')
'.cpython-32mu.so'
>>> sysconfig.get_config_var('SOABI')
'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
added to the extension module name.