summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-03-10 00:39:52 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-03-10 00:39:52 (GMT)
commit0cf177205c9ca8b5a8845aad2f30d37e9e2e4dd3 (patch)
tree02dd4c6cc38a5d77c00ad63b34bffea34dbc9aca
parentc38f89146d801c4c4834b8b010f06fb9de2cc859 (diff)
downloadcpython-0cf177205c9ca8b5a8845aad2f30d37e9e2e4dd3.zip
cpython-0cf177205c9ca8b5a8845aad2f30d37e9e2e4dd3.tar.gz
cpython-0cf177205c9ca8b5a8845aad2f30d37e9e2e4dd3.tar.bz2
whatsnew: porting note for sysconfig 'SO' key deprecation.
-rw-r--r--Doc/whatsnew/3.4.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 4a65b89..971afc4 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -2249,6 +2249,11 @@ Changes in the Python API
future have no default, all calls to :func:`hmac.new` should be changed to
explicitly specify a *digestmod* (:issue:`17276`).
+* Calling :func:`sysconfig.get_config_var` with the ``SO`` key, or looking
+ ``SO`` up in the results of a call to :func:`sysconfig.get_config_vars`
+ is deprecated. This key should be replaced by ``EXT_SUFFIX`` or
+ ``SHLIB_SUFFIX``, depending on the context (:issue:`19555`).
+
* Any calls to ``open`` functions that specify ``U`` should be modified.
``U`` is ineffective in Python3 and will eventually raise an error if used.
Depending on the function, the equivalent of its old Python2 behavior can be