changelog
authorStefan Behnel <stefan_ml@behnel.de>
Sun, 17 Mar 2013 09:27:32 +0000 (10:27 +0100)
committerStefan Behnel <stefan_ml@behnel.de>
Sun, 17 Mar 2013 09:27:32 +0000 (10:27 +0100)
--HG--
extra : rebase_source : 889ca43dd6769a6208f8c69e36f2103468b3b546

CHANGES.rst

index b551c26..c02bb12 100644 (file)
@@ -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.