From: Stefan Behnel Date: Sun, 17 Mar 2013 09:27:32 +0000 (+0100) Subject: changelog X-Git-Tag: 0.19b1~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=187e8c5b2130529e73577bce0ab66778dfeda036;p=platform%2Fupstream%2Fpython-cython.git changelog --HG-- extra : rebase_source : 889ca43dd6769a6208f8c69e36f2103468b3b546 --- diff --git a/CHANGES.rst b/CHANGES.rst index b551c26..c02bb12 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -55,6 +55,12 @@ Features added Bugs fixed ---------- +* ``yield`` works inside of ``with gil`` sections. It previously lead to a crash. + This fixes trac ticket 803. + +* Static methods without explicitly named positional arguments (e.g. having only + ``*args``) crashed when being called. This fixes trac ticket 804. + * ``dir()`` without arguments previously returned an unsorted list, which now gets sorted as expected.