Changes for the default_args testcase to run under Python 3 when called from python_default_args testcase
11 lines
349 B
OpenEdge ABL
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"
|