$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Philippe Vaucher (philippe.vaucher_at_[hidden])
Date: 2007-07-23 10:00:07
>
> Can you find out what the python exception is that triggered it ?
>
>
> Here is my call stack and the code http://cpp.sourceforge.net/?show=38616
> The line throwing the exception is marked with a comment.
>
By the way it's not really python that fails... it's code in errors.hpp :
template <class T>
inline T* expect_non_null(T* x)
{
if (x == 0)
throw_error_already_set();
return x;
}
Philippe