This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xuancong84
Recipients xuancong84
Date 2019-10-09.08:22:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570609362.26.0.380213879875.issue38420@roundup.psfhosted.org>
In-reply-to
Content
A very common use of defaultdict is that if the key exist, use the corresponding mapped target, if the key does not exist, use the key itself. However, current Python 2/3 defaultdict does not support parametric lambda function:

>>> from collections import *
>>> aa=defaultdict(lambda t:t)
>>> aa
defaultdict(<function <lambda> at 0x10a55c950>, {})
>>> aa[0]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: <lambda>() missing 1 required positional argument: 't'
>>>

I would like to suggest that use the dict's query key as the first argument in the default lambda function. And use the dict itself as the 2nd argument in the default lambda function (e.g., if the key exist, use the mapped target, otherwise, use the size of the current defaultdict). I think that will make Python much more powerful than any other programming language. Anyone can think of any additional information for the default lambda function? Thanks!
History
Date User Action Args
2019-10-09 08:22:42xuancong84setrecipients: + xuancong84
2019-10-09 08:22:42xuancong84setmessageid: <1570609362.26.0.380213879875.issue38420@roundup.psfhosted.org>
2019-10-09 08:22:42xuancong84linkissue38420 messages
2019-10-09 08:22:41xuancong84create