commit | dd76b3f7d332dd6eced5cbc2ad2adfc397700b3d | [log] [tgz] |
---|---|---|
author | Arie Bovenberg <a.c.bovenberg@gmail.com> | Fri Feb 11 01:56:21 2022 +0100 |
committer | GitHub <noreply@github.com> | Thu Feb 10 16:56:21 2022 -0800 |
tree | f4b5f5b219371a356498beb9b42978f3eb5a6bfa | |
parent | 80e4f262aa27a39abf3fadc19a6323fea4607a8f [diff] |
bpo-46246: add missing __slots__ to importlib.metadata.DeprecatedList (GH-30452) Confirmed with @jaraco that this indeed needs a fix. A question that came up while I was digging into the code: I think `SelectableGroups` could similarly use `__slots__ = ()`, since its purpose seems only for convenience around `dict`, not to have attributes of its own. Automerge-Triggered-By: GH:jaraco