aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python_runtime_data_builtin.i
blob: 546ccda524fd74e3c4e9c4f8ad11afd254d60276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Test swig_runtime_data with and without -builtin

%module python_runtime_data_builtin

%begin %{
#if defined(Py_LIMITED_API)
#undef Py_LIMITED_API // not yet supported by builtin
#endif
%}

%inline %{
#ifdef SWIGPYTHON_BUILTIN
bool is_python_builtin() { return true; }
#else
bool is_python_builtin() { return false; }
#endif
%}

%include std_vector.i

%template(vectord) std::vector<double>;