From: Stefan Behnel Date: Fri, 26 Apr 2013 06:15:00 +0000 (+0200) Subject: changelog X-Git-Tag: 0.19.1~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5045a869d9538895769c48832cbb3a3c099ddd35;p=platform%2Fupstream%2Fpython-cython.git changelog --- diff --git a/CHANGES.rst b/CHANGES.rst index 1e3bff1..60e1494 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,33 @@ Cython Changelog ================ +0.19.1 (2013-??) +=================== + +Features added +-------------- + +* A warning is emitted when negative literal indices are found inside of + a code section that disables ``wraparound`` handling. This helps with + fixing invalid code that might fail in the face of future compiler + optimisations. + +* Constant folding for boolean expressions (and/or) was improved. + +Bugs fixed +---------- + +* In C++ mode, the C99-only keyword ``restrict`` could accidentally be + seen by the GNU C++ compiler. It is now specially handled for both + GCC and MSVC. + +* Testing large (> int) C integer values for their truth value could fail + due to integer wrap-around. + +Other changes +------------- + + 0.19 (2013-04-19) =================