swig/Examples/test-suite/python_default_args.i
William S Fulton efb8784c8b Fix python default_args testcase for Python 3
Changes for the default_args testcase to run under Python 3 when called
from python_default_args testcase
2015-01-09 00:37:23 +00:00

11 lines
349 B
OpenEdge ABL

%module python_default_args
%pythondefaultargs;
// Turn off the feature for the tricky cases that can't be handled
%nopythondefaultargs trickyvalue3; // 'mode=0644' is okay in Python 2, but no Python 3
%nopythondefaultargs seek;
%nopythondefaultargs Space::Klass::inc;
%nopythondefaultargs DerivedEnumClass::accelerate;
%include "default_args.i"