diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2013-03-21 20:21:49 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2013-03-21 20:21:49 (GMT) |
commit | d5537d071cc2acada7220431a0eea5931c2e8a2d (patch) | |
tree | eba2ec8207b84f178068d4f86942e962113d7689 /Doc/whatsnew | |
parent | 03b0116c781f8b2b530c2452d25d9a372c8f3635 (diff) | |
download | cpython-d5537d071cc2acada7220431a0eea5931c2e8a2d.zip cpython-d5537d071cc2acada7220431a0eea5931c2e8a2d.tar.gz cpython-d5537d071cc2acada7220431a0eea5931c2e8a2d.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')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 09640f6..47d477f 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:: |