diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-17 10:18:44 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-17 10:18:44 +0200 |
commit | df0db49b1b8b08e7a17dd1358ad4f532a0f3151f (patch) | |
tree | be28532f46381adaccc07e74b1b15e3f64d514cd /Doc/extending | |
parent | 54237f9feaefd209c2aaa5b4003810e69f6714f3 (diff) | |
download | cpython-git-df0db49b1b8b08e7a17dd1358ad4f532a0f3151f.tar.gz |
Issue #22883: Update PyInt to PyLong in C API example.
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/newtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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, |