Commit bd9833dc authored by Stefan Behnel's avatar Stefan Behnel

changelog

parent 993ba093
...@@ -41,8 +41,9 @@ Features added ...@@ -41,8 +41,9 @@ Features added
* Binary and/or/xor/rshift operations with small constant Python integers * Binary and/or/xor/rshift operations with small constant Python integers
are faster. are faster.
* ``any()`` and ``all()`` used inlined loops when called on generator * The builtin functions ``any()`` and ``all()`` are inlined into the
expressions. for-loops when called on generator expressions to avoid the generator
iteration overhead.
* Keyword argument dicts are no longer copied on function entry when they * Keyword argument dicts are no longer copied on function entry when they
are not being used or only passed through to other function calls (e.g. are not being used or only passed through to other function calls (e.g.
......
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