Tagged Questions
6
votes
3answers
228 views
How to memoize **kwargs?
I haven't seen an established way to memoize a function that takes key-word arguments, i.e. something of type
def f(*args, **kwargs)
since typically a memoizer has a dict to cache results for a ...
4
votes
2answers
972 views
Python func_dict used to memoize; other useful tricks?
A Python function object has an attribute dictionary called func_dict which is visible from outside the function and is mutable, but which is not modified when the function is called. (I learned this ...
4
votes
2answers
233 views
Is the pickling process deterministic?
Does Pickle always produce the same output for a certain input value? I suppose there could be a gotcha when pickling dictionaries that have the same contents but different insert/delete histories. My ...