On 21Jan2024 23:39, [email protected] <[email protected]> wrote:
class NameMe(dict):
def __missing__(self, key):
return key
I would need to know more about what it might be used for. What larger problem led you to writing a `dict` subclass with this particular `__missing__` implementation?
-- https://mail.python.org/mailman/listinfo/python-list
