summaryrefslogtreecommitdiffstats
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-04 22:04:20 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-04 22:04:20 (GMT)
commita701388de1135241b5a8e4c970e06c0e83a66dc0 (patch)
tree5faf9071aa6fd65c55424f1e5851bce8634a1bb7 /Objects/setobject.c
parentd4dc6dc9e7e1fc1708c243b308a27e2faf59a3ea (diff)
downloadcpython-a701388de1135241b5a8e4c970e06c0e83a66dc0.zip
cpython-a701388de1135241b5a8e4c970e06c0e83a66dc0.tar.gz
cpython-a701388de1135241b5a8e4c970e06c0e83a66dc0.tar.bz2
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 7cd87d3..b903fbee 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.");