SIGN IN SIGN UP
python / cpython UNCLAIMED

The Python programming language

0 0 1 Python

bpo-39028: Performance enhancement in keyword extraction (GH-17576)

All keywords should first be checked for pointer identity. Only
after that failed for all keywords (unlikely) should unicode
equality be used.
The original code would call unicode equality on any non-matching
keyword argument. Meaning calling it often e.g. when a function
has many kwargs but only the last one is provided.
S
Sebastian Berg committed
75bb07e92baa7267a61056d03d7e6b475588e793
Parent: 50d4f12
Committed by Inada Naoki <songofacandy@gmail.com> on 12/18/2019, 6:51:22 AM