Method
__init__
(self, frame, f_lineno, f_back)
Source from the content-addressed store, hash-verified
| 275 | |
| 276 | class _DummyFrameWrapper(object): |
| 277 | def __init__(self, frame, f_lineno, f_back): |
| 278 | self._base_frame = frame |
| 279 | self.f_lineno = f_lineno |
| 280 | self.f_back = f_back |
| 281 | self.f_trace = None |
| 282 | original_code = frame.f_code |
| 283 | name = original_code.co_name |
| 284 | self.f_code = FCode(name, original_code.co_filename) |
| 285 | |
| 286 | @property |
| 287 | def f_locals(self): |
Callers
nothing calls this directly
Tested by
no test coverage detected