summaryrefslogtreecommitdiff
path: root/Examples/python/exceptproxy/example.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/python/exceptproxy/example.i')
-rw-r--r--Examples/python/exceptproxy/example.i10
1 files changed, 8 insertions, 2 deletions
diff --git a/Examples/python/exceptproxy/example.i b/Examples/python/exceptproxy/example.i
index 4a1e0bae9..0a46afbb6 100644
--- a/Examples/python/exceptproxy/example.i
+++ b/Examples/python/exceptproxy/example.i
@@ -109,6 +109,12 @@
%template(doubleQueue) Queue<double>;
-
-
+%inline %{
+// The -builtin SWIG option results in SWIGPYTHON_BUILTIN being defined
+#ifdef SWIGPYTHON_BUILTIN
+bool is_python_builtin() { return true; }
+#else
+bool is_python_builtin() { return false; }
+#endif
+%}