diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-14 11:09:54 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:50 -0400 |
commit | f83705b847c59a8197f5098cb7dc2d484704e24d (patch) | |
tree | 1b314d07bb9f50a75781d703ec6c778056e74684 /src/pyinterp.cc | |
parent | 65af1688382331d91153fb2366026e94feb5afe2 (diff) | |
download | fork-ledger-f83705b847c59a8197f5098cb7dc2d484704e24d.tar.gz fork-ledger-f83705b847c59a8197f5098cb7dc2d484704e24d.tar.bz2 fork-ledger-f83705b847c59a8197f5098cb7dc2d484704e24d.zip |
Changed xpath to use intrusive_ptr; got the xml command working
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() <<*/ "'"); } } |