Re: [C++-sig] [py++] AttributeError: 'Boost.Python.StaticProperty' object attribute '__doc__' is read-only

2009-08-24 Thread Anderson Lizardo
the problem seems only to happen on Karmic. On Ubuntu 9.04 (jaunty) the same binary package works fine. Regards, -- Anderson Lizardo OpenBossa Labs - INdT Manaus - Brazil ___ Cplusplus-sig mailing list Cplusplus-sig@python.org http://mail.python.org/mailman/listinfo/cplusplus-sig

Re: [C++-sig] [Boost.Python] Request to merge some patches from trunk into 1.40 branch (was: Re: PySide has been released)

2009-08-21 Thread Anderson Lizardo
e release branch. But now I see that this package was uploaded on Aug 10th, so that's why it didn't have the changes. Thanks! Just hoping to get the final 1.40 release soon :) -- Anderson Lizardo OpenBossa Labs - INdT Manaus - Brazil ___ Cplus

[C++-sig] [Boost.Python] Request to merge some patches from trunk into 1.40 branch (was: Re: PySide has been released)

2009-08-21 Thread Anderson Lizardo
Boost.Python, and the first two were in trunk even before the 1.39 release, but were never merged... Thanks in advance, -- Anderson Lizardo OpenBossa Labs - INdT Manaus - Brazil ___ Cplusplus-sig mailing list Cplusplus-sig@python.org http

Re: [C++-sig] boost.python: no overflow checking for unsigned int parameters ?

2009-06-18 Thread Anderson Lizardo
t;  boost/numeric/conversion/cast.hpp Done. See https://svn.boost.org/trac/boost/ticket/3189 and the patch attached to it. Note the patch still lacks the addition of a test to the test suite. I'm working on it, but you can test it in advance. Regards, -- Anderson Lizardo Open

[C++-sig] boost.python: no overflow checking for unsigned int parameters ?

2009-06-15 Thread Anderson Lizardo
t;MyClass2: " << x << std::endl; } void some_method(unsigned int x) { std::cout << "MyClass2::some_method: " << x << std::endl; } }; using namespace boost::python; BOOST_PYTHON_MODULE(mymodule) { class_("MyClass1", init())