Coverage for node / src / stigmem_node / tombstones.py: 0%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-05-25 01:49 +0000

1"""Compatibility alias for :mod:`stigmem_node.lifecycle.tombstones`.""" 

2 

3from __future__ import annotations 

4 

5import sys 

6from typing import TYPE_CHECKING 

7 

8__all__ = [ 

9 "apply_inbound_revocation", 

10 "apply_inbound_tombstone", 

11 "create_tombstone", 

12 "filter_tombstoned_records", 

13 "get_tombstone_status", 

14 "invalidate_tombstone_cache", 

15 "is_tombstoned", 

16 "list_revocations", 

17 "list_tombstones", 

18 "revoke_tombstone", 

19] 

20 

21if TYPE_CHECKING: 

22 from .lifecycle.tombstones import ( 

23 apply_inbound_revocation, 

24 apply_inbound_tombstone, 

25 create_tombstone, 

26 filter_tombstoned_records, 

27 get_tombstone_status, 

28 invalidate_tombstone_cache, 

29 is_tombstoned, 

30 list_revocations, 

31 list_tombstones, 

32 revoke_tombstone, 

33 ) 

34else: 

35 from .lifecycle import tombstones as _impl 

36 

37 sys.modules[__name__] = _impl