| 118 | { |
| 119 | |
| 120 | std::string formatPythonException( bool withStacktrace, int *lineNumber ) |
| 121 | { |
| 122 | auto [exception, value, traceback] = currentPythonException(); |
| 123 | return formatInternal( exception, value, traceback, withStacktrace, lineNumber ); |
| 124 | } |
| 125 | |
| 126 | void translatePythonException( bool withStacktrace ) |
| 127 | { |
nothing calls this directly
no test coverage detected