Skip to content Skip to sidebar Skip to footer
Showing posts with the label Boost Python

How To Override __setattr__ In A Wrapped Class (from C++)?

Using boost::python, I have been able to wrap a class (Node) which has some virtual functions, and … Read more How To Override __setattr__ In A Wrapped Class (from C++)?

How To Reinitialise An Embedded Python Interpreter?

I'm working on embedding Python in our test suite application. The purpose is to use Python to … Read more How To Reinitialise An Embedded Python Interpreter?

Boost.python Tutorial In Ubuntu 10.04

I downloaded the latest version of Boost and I'm trying to get the Boost.python tutorial up and… Read more Boost.python Tutorial In Ubuntu 10.04

Boost.python Custom Exception Class

I'm implementing a Python extension module using Boost.Python. The module should define its own… Read more Boost.python Custom Exception Class

Adding Python Script To C++ Project

How would I go about adding a script written in python to a c++ project? Thanks Edit: Basically all… Read more Adding Python Script To C++ Project

Dependencies Between Compiled Modules In Python

Let's say I have two modules in a python project that are written in C++ and exposed with boost… Read more Dependencies Between Compiled Modules In Python