summaryrefslogtreecommitdiff
path: root/Examples/test-suite/li_std_except_as_class.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/li_std_except_as_class.i')
-rw-r--r--Examples/test-suite/li_std_except_as_class.i8
1 files changed, 8 insertions, 0 deletions
diff --git a/Examples/test-suite/li_std_except_as_class.i b/Examples/test-suite/li_std_except_as_class.i
index 0400c9a82..01ed1f07c 100644
--- a/Examples/test-suite/li_std_except_as_class.i
+++ b/Examples/test-suite/li_std_except_as_class.i
@@ -23,3 +23,11 @@ void test_domain_error() throw(std::domain_error)
%include <std_except.i>
void test_domain_error() throw(std::domain_error)
{ throw std::domain_error("std::domain_error"); }
+
+%inline %{
+#ifdef SWIGPYTHON_BUILTIN
+bool is_python_builtin() { return true; }
+#else
+bool is_python_builtin() { return false; }
+#endif
+%}