From 9b2c2b603297ac494e06543c9937a222b6c81649 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 7 Nov 2009 06:40:25 -0500 Subject: Python vars of unconvertable type return NULL_VALUE --- src/pyinterp.cc | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/pyinterp.cc') 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; -- cgit v1.2.3