(ob: object)
| 14 | |
| 15 | |
| 16 | def refcount_immortal(ob: object) -> int: |
| 17 | if _is_immortal := getattr(sys, "_is_immortal", None): |
| 18 | return UINT32MAX if _is_immortal(ob) else sys.getrefcount(ob) |
| 19 | return sys.getrefcount(ob) |
| 20 | |
| 21 | |
| 22 | MANAGED_DICT_GET_REFERRERS_SUPPORTED = ( |
no test coverage detected