[Python-checkins] peps: Update SOABI PEP to reflect config var change (#16754).

eric.araujo python-checkins at python.org
Mon Mar 17 21:32:49 CET 2014


http://hg.python.org/peps/rev/ccb679e5ae0e
changeset:   5415:ccb679e5ae0e
user:        Éric Araujo <merwok at netwok.org>
date:        Mon Mar 17 16:32:35 2014 -0400
summary:
  Update SOABI PEP to reflect config var change (#16754).

Thanks to Arfrever Frehtes Taifersar Arahesis for the patch.

files:
  pep-3149.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/pep-3149.txt b/pep-3149.txt
--- a/pep-3149.txt
+++ b/pep-3149.txt
@@ -130,12 +130,12 @@
 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.
 

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list