This is related to issues 58, which compelled us to include __getitem__ in sigs_for_builtin_modules.
Here, we want to cover the other dunders of MutableMapping (see them here).
Note though, that we won't cover the non-dunder methods here (not sure we should yet), and also note that we'll make the signatures be those of MutableMapping, more or less (though there's some hesitation due to the fact that some of these dunders are in other python objects too, and don't exactly share the same signatures).
This is related to issues 58, which compelled us to include
__getitem__
insigs_for_builtin_modules
.Here, we want to cover the other dunders of
MutableMapping
(see them here).Note though, that we won't cover the non-dunder methods here (not sure we should yet), and also note that we'll make the signatures be those of
MutableMapping
, more or less (though there's some hesitation due to the fact that some of these dunders are in other python objects too, and don't exactly share the same signatures).