Commit 4df5c828 authored by Stefan Behnel's avatar Stefan Behnel

Update changelog.

parent 445b0b5d
...@@ -18,6 +18,10 @@ Features added ...@@ -18,6 +18,10 @@ Features added
* The ``volatile`` C modifier is supported in Cython code. * The ``volatile`` C modifier is supported in Cython code.
Patch by Jeroen Demeyer. (Github issue #1667) Patch by Jeroen Demeyer. (Github issue #1667)
* ``@cython.trashcan(True)`` can be used on an extension type to enable the
CPython trashcan. This allows deallocating deeply recursive objects without
overflowing the stack. Patch by Jeroen Demeyer. (Github issue #2842)
* ``?`` is supported as NumPy dtype for ``bool``. * ``?`` is supported as NumPy dtype for ``bool``.
Patch by Max Klein. (Github issue #2675) Patch by Max Klein. (Github issue #2675)
...@@ -40,9 +44,8 @@ Features added ...@@ -40,9 +44,8 @@ Features added
* ``--no-capture`` added to ``runtests.py`` to prevent stdout/stderr capturing * ``--no-capture`` added to ``runtests.py`` to prevent stdout/stderr capturing
during srctree tests. Patch by Matti Picus. during srctree tests. Patch by Matti Picus.
* ``@cython.trashcan(True)`` can be used on an extension type to enable the * ``--no-docstrings`` option added to ``cythonize`` script.
CPython trashcan. This allows deallocating deeply recursive objects without Original patch by mo-han. (Github issue #2889)
overflowing the stack. Patch by Jeroen Demeyer. (Github issue #2842)
Bugs fixed Bugs fixed
---------- ----------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment