summaryrefslogtreecommitdiff
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-05 00:04:20 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-05 00:04:20 +0200
commitcc93d1961a7ae74e6afa71f78a23eaea0dadd5e2 (patch)
tree495d8b4c363ec496a47cf2ab6e3ef3d94159bdb4 /Objects/setobject.c
parent6c25fb634d059afe077cd3a346ad6f4a97af8ea9 (diff)
downloadcpython-cc93d1961a7ae74e6afa71f78a23eaea0dadd5e2.tar.gz
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI.
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 7cd87d33d1..b903fbee80 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -856,7 +856,7 @@ setiter_reduce(setiterobject *si)
Py_DECREF(list);
return NULL;
}
- return Py_BuildValue("N(N)", _PyIter_GetBuiltin("iter"), list);
+ return Py_BuildValue("N(N)", _PyObject_GetBuiltin("iter"), list);
}
PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");