(self: anon_map, obj: object, /)
| 105 | return val |
| 106 | |
| 107 | def get_anon(self: anon_map, obj: object, /) -> Tuple[int, bool]: |
| 108 | self_dict: dict = self # type: ignore[type-arg] |
| 109 | |
| 110 | idself: int = _get_id(obj) |
| 111 | if idself in self_dict: |
| 112 | return self_dict[idself], True |
| 113 | else: |
| 114 | return self._add_missing(idself), False |
| 115 | |
| 116 | if cython.compiled: |
| 117 |