aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Holth <dholth@fastmail.fm>2016-08-19 15:58:00 -0400
committerDaniel Holth <dholth@fastmail.fm>2016-08-19 15:58:00 -0400
commitfc6050ad4c1481be0a1aba1f056e76aa8be50039 (patch)
tree1f55915fe34653ae13619e69f1d0ea1a43cb201d
parent0a3f850b3bc6c888f0f8810e453e664f9fd320f6 (diff)
downloadexternal_python_setuptools-fc6050ad4c1481be0a1aba1f056e76aa8be50039.tar.gz
external_python_setuptools-fc6050ad4c1481be0a1aba1f056e76aa8be50039.tar.bz2
external_python_setuptools-fc6050ad4c1481be0a1aba1f056e76aa8be50039.zip
changelog
-rw-r--r--CHANGES.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 5a2b9928..3c4b118e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,6 +8,14 @@ v25.1.3
* #714 and #704: Revert fix as it breaks other components
downstream that can't handle unicode. See #709, #710,
and #712.
+* Add Extension(py_limited_api=True). When set to a truthy value,
+ that extension gets a filename apropriate for code using Py_LIMITED_API.
+ When used correctly this allows a single compiled extension to work on
+ all future versions of CPython 3.
+ The py_limited_api argument only controls the filename. To be
+ compatible with multiple versions of Python 3, the C extension
+ will also need to set -DPy_LIMITED_API=... and be modified to use
+ only the functions in the limited API.
v25.1.2
-------