id summary reporter owner description type status milestone component version severity resolution keywords cc 7614 duplicate dosctring is generated for pure virtual methods tomer.spector@… Ralf W. Grosse-Kunstleve "When defining a method through ""def"" and using ""pure_virtual"" (see below) the given docstring is duplicated in the result python definition. C++ class with pure-virtual method: =================================== class IOperation { public: virtual string AsString() = 0; } The wrapper to expose it to Python: =================================== class_ >(""IOperation"", ""docstring for class"", no_init) .def(""AsString"", pure_virtual(&IOperation::AsString), ""docstring for method AsString"") ; Result python class definition: =============================== class IOperation(instance): """""" docstring for class """""" def AsString(self): """""" docstring docstring """""" pass " Bugs new To Be Determined python USE GITHUB Boost 1.47.0 Problem