summaryrefslogtreecommitdiff
path: root/Lib/python/std_pair.i
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/python/std_pair.i')
-rw-r--r--Lib/python/std_pair.i8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/python/std_pair.i b/Lib/python/std_pair.i
index 673e85eef..bc8ccaade 100644
--- a/Lib/python/std_pair.i
+++ b/Lib/python/std_pair.i
@@ -42,8 +42,8 @@
}
} else if (PySequence_Check(obj)) {
if (PySequence_Size(obj) == 2) {
- swig::PyObject_var first = PySequence_GetItem(obj,0);
- swig::PyObject_var second = PySequence_GetItem(obj,1);
+ swig::SwigVar_PyObject first = PySequence_GetItem(obj,0);
+ swig::SwigVar_PyObject second = PySequence_GetItem(obj,1);
res = get_pair(first, second, val);
}
} else {
@@ -92,8 +92,8 @@
}
} else if (PySequence_Check(obj)) {
if (PySequence_Size(obj) == 2) {
- swig::PyObject_var first = PySequence_GetItem(obj,0);
- swig::PyObject_var second = PySequence_GetItem(obj,1);
+ swig::SwigVar_PyObject first = PySequence_GetItem(obj,0);
+ swig::SwigVar_PyObject second = PySequence_GetItem(obj,1);
res = get_pair(first, second, val);
}
} else {