Get the path of the current Python source file, as a string
(self)
| 1195 | return None, None |
| 1196 | |
| 1197 | def filename(self): |
| 1198 | '''Get the path of the current Python source file, as a string''' |
| 1199 | if self.is_optimized_out(): |
| 1200 | return FRAME_INFO_OPTIMIZED_OUT |
| 1201 | return self.co_filename.proxyval(set()) |
| 1202 | |
| 1203 | def current_line_num(self): |
| 1204 | '''Get current line number as an integer (1-based) |
no test coverage detected