[C++-sig] boost::python + epydoc

Stefan Seefeld seefeld at sympatico.ca
Thu Nov 16 14:45:42 CET 2006


Neal,

can you try to generate a minimal test case please ?

I'v just tried this tiny module:

---------------------
#include <boost/python.hpp>

namespace bpl = boost::python;

void function() {}


BOOST_PYTHON_MODULE(bpl_epydoc)
{
  bpl::def ("function", function,
            "correlate an input against reference coeff.\n"
            "@param in: input.\n"
            "@type in: vector_Complex\n"
            "@param coef: reference pattern\n"
            "@type coef: vector_Complex\n"
            "@param size: size of the output desired\n"
            "@type size: int\n"
            "@param stride: stride for input (def=1)\n"
            "@type stride: int\n"
            );
}

---------------------

and 'epydoc bpl_epydoc.so' works just fine (with epydoc 3.0a2).

Am I missing something ?

Thanks,
		Stefan

-- 

      ...ich hab' noch einen Koffer in Berlin...



More information about the Cplusplus-sig mailing list