(self, inst)
| 3919 | self._removal_version = removal_version |
| 3920 | |
| 3921 | def __instancecheck__(self, inst): |
| 3922 | import warnings |
| 3923 | warnings._deprecated( |
| 3924 | f"{self.__module__}.{self._name}", remove=self._removal_version |
| 3925 | ) |
| 3926 | return super().__instancecheck__(inst) |
| 3927 | |
| 3928 | def __subclasscheck__(self, cls): |
| 3929 | import warnings |
nothing calls this directly
no test coverage detected