summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-04-11 21:43:59 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-04-11 21:43:59 +0200
commit1582d97d44b9dbe9b89e9ec6e7e979ae73e3b583 (patch)
tree04a6c77dfa7647e872e04d9f53ad4549d1ba0cc4
parentfcb44032968d8893ead5c63c7554d293d370ec1b (diff)
downloadcython-1582d97d44b9dbe9b89e9ec6e7e979ae73e3b583.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 9985c01ca..75037d122 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -20,10 +20,9 @@ Features added
* Annotations are no longer parsed, keeping them as strings following PEP-563.
Patch by David Woods. (Github issue #3285)
-* Preliminary support for ``LIMITED_API`` is available by setting the
- ``CYTHON_LIMITED_API`` C macro.
- (Support for ``LIMITED_API`` is currently in an early stage and many features
- do not yet work.)
+* Preliminary support for the CPython's ``Py_LIMITED_API`` (stable ABI) is
+ available by setting the ``CYTHON_LIMITED_API`` C macro. Note that the
+ support is currently in an early stage and many features do not yet work.
Patches by Eddie Elizondo. (Github issue #3223, #3311)
* The dispatch to fused functions is now linear in the number of arguments,