Return a _pytest._code.Source object for the full source file of the code.
(self)
| 101 | |
| 102 | @property |
| 103 | def fullsource(self) -> Source | None: |
| 104 | """Return a _pytest._code.Source object for the full source file of the code.""" |
| 105 | full, _ = findsource(self.raw) |
| 106 | return full |
| 107 | |
| 108 | def source(self) -> Source: |
| 109 | """Return a _pytest._code.Source object for the code object's source only.""" |
nothing calls this directly
no test coverage detected