How can I get a callable factory for a defaultdict to allow populating it with a comprehension? I think it's probably not possible, but I can't think of a good reason why?
>>> def foo(*args):
... # TODO
...
>>> from collections import defaultdict
>>> thing = foo(defaultdict, int)
>>> d = thing((i, i*i) for i in range(3))
>>> d[2]
# should return 4
>>> d[-1]
# should return 0
Any arguments to
defaultdict
after thedefault_factory
are treated just like arguments todict
:Just pass the comprehension to
defaultdict
and let it do the work:Or use
functools.partial
: