disabling autodoc/prepend/append + static members since it doesn't wiht default_args.i test case
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6680 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
45419e9bed
commit
cd84c7404c
1 changed files with 4 additions and 1 deletions
|
|
@ -2173,7 +2173,10 @@ public:
|
|||
}
|
||||
|
||||
if (shadow) {
|
||||
if ( !classic && !Getattr(n,"feature:python:callback") && have_addtofunc(n)) {
|
||||
//
|
||||
// static + autodoc/prepend/append + def args not working!!!, disable by now
|
||||
//
|
||||
if (0 && !classic && !Getattr(n,"feature:python:callback") && have_addtofunc(n)) {
|
||||
int kw = (check_kwargs(n) && !Getattr(n,"sym:overloaded")) ? 1 : 0;
|
||||
Printv(f_shadow, tab4, "def ", symname, "(*args", (kw ? ", **kwargs" : ""), "):\n", NIL);
|
||||
if ( have_docstring(n) )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue