From ab22c72a561fb4d67cf7bdb5c0e41466f60bfbeb Mon Sep 17 00:00:00 2001 From: Marcelo Matus Date: Mon, 6 Mar 2006 04:08:44 +0000 Subject: [PATCH] fix fastinit option initial value, ie, it should be disabled(0) git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8965 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/Modules/python.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Source/Modules/python.cxx b/SWIG/Source/Modules/python.cxx index d76cbac82..26760a408 100644 --- a/SWIG/Source/Modules/python.cxx +++ b/SWIG/Source/Modules/python.cxx @@ -78,7 +78,7 @@ static int proxydel = 1; static int fastunpack = 0; static int fastproxy = 0; static int fastquery = 0; -static int fastinit = 1; +static int fastinit = 0; static int olddefs = 0; static int modernargs = 0; static int aliasobj0 = 0;