summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.2.rst
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2013-03-21 20:31:41 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2013-03-21 20:31:41 (GMT)
commit1621d77fc8fb2385d26c7de39f55df60426ec6ec (patch)
tree0a31742c8b8aed6453b95f92a77f50f66d5085cd /Doc/whatsnew/3.2.rst
parentbd2d30cf31c61843645a96a377aa0573052c4972 (diff)
parentd5537d071cc2acada7220431a0eea5931c2e8a2d (diff)
downloadcpython-1621d77fc8fb2385d26c7de39f55df60426ec6ec.zip
cpython-1621d77fc8fb2385d26c7de39f55df60426ec6ec.tar.gz
cpython-1621d77fc8fb2385d26c7de39f55df60426ec6ec.tar.bz2
- Issue #16754: Fix the incorrect shared library extension on linux. Introduce
two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r--Doc/whatsnew/3.2.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 6f0e407..5059f48 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -368,9 +368,9 @@ In Python itself, the tags are accessible from functions in the :mod:`sysconfig`
module::
>>> import sysconfig
- >>> sysconfig.get_config_var('SOABI') # find the version tag
+ >>> sysconfig.get_config_var('SOABI') # find the version tag
'cpython-32mu'
- >>> sysconfig.get_config_var('SO') # find the full filename extension
+ >>> sysconfig.get_config_var('EXT_SUFFIX') # find the full filename extension
'.cpython-32mu.so'
.. seealso::