From 1da1dbf4586afbd6b5d5c3cf244a1a3ea0f4382b Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Mon, 17 Mar 2003 19:46:11 +0000 Subject: Renamed PyObject_GenericGetIter to PyObject_SelfIter to more accurately describe what the function does. Suggested by Thomas Wouters. --- Objects/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/object.c') diff --git a/Objects/object.c b/Objects/object.c index eb4d8f7cfb..9ce3de7e06 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1301,7 +1301,7 @@ _PyObject_GetDictPtr(PyObject *obj) /* Generic GetAttr functions - put these in your tp_[gs]etattro slot */ PyObject * -PyObject_GenericGetIter(PyObject *obj) +PyObject_SelfIter(PyObject *obj) { Py_INCREF(obj); return obj; -- cgit v1.2.1