3#include <boost/python.hpp>
7using boost::python::self;
11 using boost::python::str;
14 char* out=
p.c_string();
15 return boost::python::str(out,strlen(out));
21 boost::python::class_<Vector>(
"Vector")
22 .def(boost::python::init <>())
26 .def(
"__iter__", boost::python::iterator<Vector>())
34 .def(
"ring",Vector_get_Ring);
boost::python::str Vector_as_str(const Vector &p)