Commit 82aed5cd authored by Stefan Behnel's avatar Stefan Behnel

changelog

parent b97b545e
...@@ -66,6 +66,7 @@ Features added ...@@ -66,6 +66,7 @@ Features added
C code as an importable module. C code as an importable module.
* External C++ classes that overload the assignment operator can be used. * External C++ classes that overload the assignment operator can be used.
Patch by Ian Henriksen.
Bugs fixed Bugs fixed
---------- ----------
...@@ -92,13 +93,20 @@ Bugs fixed ...@@ -92,13 +93,20 @@ Bugs fixed
in C++. Patch by David Vierra, original patch by Michael Enßlin. in C++. Patch by David Vierra, original patch by Michael Enßlin.
* Buffer index calculations using index variables with small C integer * Buffer index calculations using index variables with small C integer
types could overflow for large buffer sizes. Original patch by types could overflow for large buffer sizes.
David Vierra. Original patch by David Vierra.
* C unions use a saner way to coerce from and to Python dicts. * C unions use a saner way to coerce from and to Python dicts.
* When compiling a module ``foo.pyx``, the directories in ``sys.path`` * When compiling a module ``foo.pyx``, the directories in ``sys.path``
are no longer searched when looking for ``foo.pxd``. are no longer searched when looking for ``foo.pxd``.
Patch by Jeroen Demeyer.
* Memory leaks in the embedding main function were fixed.
Original patch by Michael Enßlin.
* Some complex Python expressions could fail to compile inside of finally
clauses.
Other changes Other changes
------------- -------------
...@@ -498,7 +506,6 @@ Bugs fixed ...@@ -498,7 +506,6 @@ Bugs fixed
variables. variables.
0.20 (2014-01-18) 0.20 (2014-01-18)
================= =================
......
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