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:
Marcelo Matus 2004-11-06 00:51:52 +00:00
commit cd84c7404c

View file

@ -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) )