From: Serhiy Storchaka Date: Tue, 17 Feb 2015 08:18:44 +0000 (+0200) Subject: Issue #22883: Update PyInt to PyLong in C API example. X-Git-Tag: v3.5.0a2~128^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df0db49b1b8b08e7a17dd1358ad4f532a0f3151f;p=python Issue #22883: Update PyInt to PyLong in C API example. --- diff --git a/Doc/extending/newtypes.rst b/Doc/extending/newtypes.rst index 45b57211b6..d52070221e 100644 --- a/Doc/extending/newtypes.rst +++ b/Doc/extending/newtypes.rst @@ -1205,7 +1205,7 @@ Here is an example:: { if (strcmp(name, "data") == 0) { - return PyInt_FromLong(obj->data); + return PyLong_FromLong(obj->data); } PyErr_Format(PyExc_AttributeError,