| 31 | |
| 32 | @dataclass |
| 33 | class NativeFrame: |
| 34 | address: int |
| 35 | symbol: str |
| 36 | path: str |
| 37 | linenumber: int |
| 38 | colnumber: int |
| 39 | library: str |
| 40 | |
| 41 | class FrameType(enum.Enum): |
| 42 | IGNORE = 0 |
| 43 | EVAL = 1 |
| 44 | OTHER = 3 |
| 45 | |
| 46 | |
| 47 | def _is_eval_frame(symbol: str, python_version: Tuple[int, int]) -> bool: |
no outgoing calls