Disable test not relevant for Python -builtin

This commit is contained in:
William S Fulton 2014-10-01 07:57:23 +01:00
commit 0fb34cb019
2 changed files with 12 additions and 2 deletions

View file

@ -46,5 +46,10 @@ public:
void func() {};
};
#ifdef SWIGPYTHON_BUILTIN
bool is_python_builtin() { return true; }
#else
bool is_python_builtin() { return false; }
#endif
%}