[C++-sig] Help with converters ...

Hans Meine hans_meine at gmx.net
Mon Oct 19 20:44:30 CEST 2009


Hi Michele!

On Montag 19 Oktober 2009, Michele De Stefano wrote:
> Now, when I try to implement the "convertible" static member function
> of the converter class, I write this (I've extracted only the
> interesting part):
>
> [...]
> 	extract<const tuple&>
>              get_tup0(in[0]),
>              get_tup1(in[1]);

This looks like the problem to me; you're effectively trying to get a 
*reference* from python, i.e. this can only work if there is already an 
*existing* boost::python::tuple object hidden in (in[0]) and (in[1]).
(This will typically only work with BPL-exported C++ objects wrapped into 
their python shells.)

I'd try simply removing the const &: extract<tuple>..

-- 
Ciao, /  /                                                    .o.
     /--/                                                     ..o
    /  / ANS                                                  ooo
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: This is a digitally signed message part.
URL: <http://mail.python.org/pipermail/cplusplus-sig/attachments/20091019/6cf35908/attachment.pgp>


More information about the Cplusplus-sig mailing list