• Stefan Behnel's avatar
    Optimisation for kw args parsing: static parsing only for required arguments,... · 4cd97c23
    Stefan Behnel authored
    Optimisation for kw args parsing: static parsing only for required arguments, moved optional arg parsing into a separate function
    
    The idea is that keyword arguments tend to be sparse, so it's faster to iterate over the keyword dictionary and copy keyword values into the named arguments, instead of requesting each optional argument from the keyword dict separately.
    
    This speeds up the case where only required arguments are passed and the case where a minor number of optional keyword arguments are passed (and everything else is passed as positional arguments).
    4cd97c23
Nodes.py 194 KB