[Python] Fix docstrings for %callback functions
Reinstates autodoc for callback function testcase from #467, actually tests the resulting docstring in the _runme.py and fixes SWIG/Python so the expected result is obtained.
This commit is contained in:
parent
aa0e781034
commit
8ab622c6d0
4 changed files with 11 additions and 1 deletions
|
|
@ -2389,7 +2389,7 @@ public:
|
|||
Printv(f_dest, tab4 "return ", funcCall(name, callParms), "\n", NIL);
|
||||
}
|
||||
|
||||
if (Getattr(n, "feature:python:callback") || !have_addtofunc(n)) {
|
||||
if ((Getattr(n, "feature:python:callback") && !have_docstring(n)) || !have_addtofunc(n)) {
|
||||
/* If there is no addtofunc directive then just assign from the extension module (for speed up) */
|
||||
Printv(f_dest, name, " = ", module, ".", name, "\n", NIL);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue