summaryrefslogtreecommitdiff
path: root/Doc/c-api
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-29 03:07:33 -0800
committerVictor Stinner <vstinner@redhat.com>2018-11-29 12:07:33 +0100
commite754159ef0af99a4124dd041ab7ceb77fcc922ad (patch)
tree7e15953f5fbe673d165b7ee8aae2247f3bb4db5b /Doc/c-api
parent2fa5b2ac4485c5c9083b4b0459dd9b691daaea28 (diff)
downloadcpython-git-e754159ef0af99a4124dd041ab7ceb77fcc922ad.tar.gz
bpo-16086: Fix PyType_GetFlags() documentation (GH-10758) (GH-10789)
PyType_GetFlags() return type is unsigned long, not long. (cherry picked from commit 9fbcfc08e5814d7aa9287740187e461425a99f67) Co-authored-by: Eddie Elizondo <eduardo.elizondorueda@gmail.com>
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/type.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst
index 60c5e73960..4dfd53fb9f 100644
--- a/Doc/c-api/type.rst
+++ b/Doc/c-api/type.rst
@@ -35,7 +35,7 @@ Type Objects
Clear the internal lookup cache. Return the current version tag.
-.. c:function:: long PyType_GetFlags(PyTypeObject* type)
+.. c:function:: unsigned long PyType_GetFlags(PyTypeObject* type)
Return the :c:member:`~PyTypeObject.tp_flags` member of *type*. This function is primarily
meant for use with `Py_LIMITED_API`; the individual flag bits are
@@ -44,6 +44,9 @@ Type Objects
.. versionadded:: 3.2
+ .. versionchanged:: 3.4
+ The return type is now ``unsigned long`` rather than ``long``.
+
.. c:function:: void PyType_Modified(PyTypeObject *type)