MCPcopy Create free account
hub / github.com/apache/arrow / FormatPythonException

Function FormatPythonException

python/pyarrow/src/arrow/python/python_test.cc:177–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175}
176
177std::string FormatPythonException(const std::string& exc_class_name,
178 const std::string& exc_value) {
179 std::stringstream ss;
180 ss << "Python exception: ";
181 ss << exc_class_name;
182 ss << ": ";
183 ss << exc_value;
184 ss << "\n";
185 return ss.str();
186}
187
188Status TestCheckPyErrorStatus() {
189 Status st;

Callers 3

TestCheckPyErrorStatusFunction · 0.85
TestRestorePyErrorBasicsFunction · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected