(cls, handle)
| 2528 | |
| 2529 | @classmethod |
| 2530 | def _cache_remove(cls, handle): |
| 2531 | key = ctypes.addressof(handle.contents) |
| 2532 | if key in cls._cached_instances: |
| 2533 | cls._cached_instances.pop(key) |
| 2534 | |
| 2535 | @classmethod |
| 2536 | def _cache_contains(cls, handle): |
no test coverage detected