> In particular, you may want to update the implementations of defaultdict and > ordereddict. (are there others?)
I have a checklist for PEP 584 follow-up PRs I'm planning to make after (and if) it is accepted. typeshed stubs, docs, and `defaultdict` were on it. I'll add `OrderedDict` as well (for some reason I didn't think it was a `dict` subclass). `Counter` already defines this operator for other purposes, so no need to do anything there. I'm not aware of other public subclasses, but I may just try importing the whole stdlib and recursing through `dict.__subclasses__()` just to be sure. _______________________________________________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/3SJTNSTTZ4G5CXQQWNWRBY7WZHEWBYEY/ Code of Conduct: http://python.org/psf/codeofconduct/