summaryrefslogtreecommitdiff
path: root/src/pyinterp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyinterp.cc')
-rw-r--r--src/pyinterp.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/pyinterp.cc b/src/pyinterp.cc
index 3c86ed4b..b9e1a0e0 100644
--- a/src/pyinterp.cc
+++ b/src/pyinterp.cc
@@ -354,14 +354,7 @@ value_t python_interpreter_t::functor_t::operator()(call_scope_t& args)
std::signal(SIGINT, sigint_handler);
if (val.check())
return val();
-#if 1
- // jww (2009-02-24): Distinguish between "no return" and values with
- // unconvertable type
return NULL_VALUE;
-#else
- throw_(calc_error,
- _("Could not evaluate Python variable '%1'") << name);
-#endif
}
else if (args.size() > 0) {
list arglist;