diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-05 00:04:20 +0200 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-05 00:04:20 +0200 |
commit | cc93d1961a7ae74e6afa71f78a23eaea0dadd5e2 (patch) | |
tree | 495d8b4c363ec496a47cf2ab6e3ef3d94159bdb4 /Objects/setobject.c | |
parent | 6c25fb634d059afe077cd3a346ad6f4a97af8ea9 (diff) | |
download | cpython-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.c | 2 |
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."); |