(self)
| 186 | return self.__names |
| 187 | |
| 188 | def _name_set(self): |
| 189 | with contextlib.suppress(AttributeError): |
| 190 | return self.__lookup |
| 191 | self.__lookup = super()._name_set() |
| 192 | return self.__lookup |
| 193 | |
| 194 | def _extract_text_encoding(encoding=None, *args, **kwargs): |
| 195 | # compute stack level so that the caller of the caller sees any warning. |