remove %pythondynamic - it didn't work properly - use %pythonnondynamic instead

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7580 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-10-04 20:14:34 +00:00
commit 90db4bb7b3

View file

@ -44,16 +44,10 @@ You can also use the raw %feature form
%feature("pythonnondynamic") A;
or the inverse form
%pythondynamic(0) A;
*/
#define %pythonnondynamic(FLAG) %feature("python:nondynamic", #FLAG)
#define %pythondynamic(FLAG) %pythonnondynamic(!FLAG)
/*