diff options
Diffstat (limited to 'src/pyinterp.cc')
-rw-r--r-- | src/pyinterp.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pyinterp.cc b/src/pyinterp.cc index b687ec05..fbc2eab4 100644 --- a/src/pyinterp.cc +++ b/src/pyinterp.cc @@ -198,7 +198,7 @@ void python_interpreter_t::functor_t::operator()(value_t& result, else if (PyObject * err = PyErr_Occurred()) { PyErr_Print(); throw_(xml::xpath_t::calc_error, - "While calling Python function '" << name() << "'"); + "While calling Python function '" /*<< name() <<*/ "'"); } else { assert(false); } @@ -210,7 +210,7 @@ void python_interpreter_t::functor_t::operator()(value_t& result, catch (const error_already_set&) { PyErr_Print(); throw_(xml::xpath_t::calc_error, - "While calling Python function '" << name() << "'"); + "While calling Python function '" /*<< name() <<*/ "'"); } } |