summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-04-02 08:30:27 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-04-02 08:30:27 +0200
commit5ab92ce56e3826bb0743b32b2f8a2270bf199222 (patch)
tree4feeeb567aaad513e4dc5ac7401e62d586388b4c
parent76043d6eaaaa38c70edc9b5ef827f3a21efac970 (diff)
downloadcython-5ab92ce56e3826bb0743b32b2f8a2270bf199222.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index fb3d56127..0b299e349 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -51,6 +51,14 @@ Features added
* Inlined properties can be defined for external extension types.
Patch by Matti Picus. (Github issue #2640)
+* The ``str()`` builtin now calls ``PyObject_Str()`` instead of going
+ through a Python call.
+ Patch by William Ayd. (Github issue #3279)
+
+* String concatenation can now happen in place if possible, by extending the
+ existing string rather than always creating a new one.
+ Patch by David Woods. (Github issue #3451)
+
* Multiplication of Python numbers with small constant integers is faster.
(Github issue #2808)