summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2016-07-15 09:06:48 +0200
committerStefan Behnel <stefan_ml@behnel.de>2016-07-15 09:06:48 +0200
commit135da77909b55a8554dd9ca45dfeb99ba3a07e02 (patch)
tree30d63841b6ac6b2f7bc218b3fea14533fe66815f
parentf95f9b0780b9911723fc06d34349539eb3d7ed21 (diff)
downloadcython-135da77909b55a8554dd9ca45dfeb99ba3a07e02.tar.gz
changelog
-rw-r--r--CHANGES.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 67f145fad..287114bd5 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -11,16 +11,19 @@ Features added
* Dynamic Python attributes are allowed on cdef classes if an attribute
``cdef dict __dict__`` is declared in the class. Patch by empyrical.
-* for-loop iteration over "std::string".
-
* Cython implemented C++ classes can make direct calls to base class methods.
+ Patch by empyrical.
* New directive ``cython.no_gc`` to fully disable GC for a cdef class.
+ Patch by Claudio Freire.
* Buffer variables are no longer excluded from ``locals()``.
+ Patch by da-woods.
* Formatting C integers in f-strings is faster.
+* for-loop iteration over "std::string".
+
Bugs fixed
----------