diff options
author | Raymond Hettinger <python@rcn.com> | 2003-03-17 19:46:11 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-03-17 19:46:11 (GMT) |
commit | 1da1dbf4586afbd6b5d5c3cf244a1a3ea0f4382b (patch) | |
tree | cd4b433bcd0fd65cb0fa85586dc46e86a6d7370d /Include | |
parent | ab75840cd07ee41598d3d5cc14dcf49b272664d3 (diff) | |
download | cpython-1da1dbf4586afbd6b5d5c3cf244a1a3ea0f4382b.zip cpython-1da1dbf4586afbd6b5d5c3cf244a1a3ea0f4382b.tar.gz cpython-1da1dbf4586afbd6b5d5c3cf244a1a3ea0f4382b.tar.bz2 |
Renamed PyObject_GenericGetIter to PyObject_SelfIter
to more accurately describe what the function does.
Suggested by Thomas Wouters.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h index 291e605..33e57a4 100644 --- a/Include/object.h +++ b/Include/object.h @@ -385,7 +385,7 @@ PyAPI_FUNC(PyObject *) PyObject_GetAttr(PyObject *, PyObject *); PyAPI_FUNC(int) PyObject_SetAttr(PyObject *, PyObject *, PyObject *); PyAPI_FUNC(int) PyObject_HasAttr(PyObject *, PyObject *); PyAPI_FUNC(PyObject **) _PyObject_GetDictPtr(PyObject *); -PyAPI_FUNC(PyObject *) PyObject_GenericGetIter(PyObject *); +PyAPI_FUNC(PyObject *) PyObject_SelfIter(PyObject *); PyAPI_FUNC(PyObject *) PyObject_GenericGetAttr(PyObject *, PyObject *); PyAPI_FUNC(int) PyObject_GenericSetAttr(PyObject *, PyObject *, PyObject *); |