diff options
author | Jamie Phan <jamie@ordinarylab.dev> | 2024-01-04 14:05:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 14:05:31 (GMT) |
commit | 1ae7ceba29771baf8f2e8d2d4c50a0355cb6b5c8 (patch) | |
tree | b4c5b0325908f65a8d8a7491fcf66bd7e52f3b0d | |
parent | 35ef8cb25917bfd6cbbd7c2bb55dd4f82131c9cf (diff) | |
download | cpython-1ae7ceba29771baf8f2e8d2d4c50a0355cb6b5c8.zip cpython-1ae7ceba29771baf8f2e8d2d4c50a0355cb6b5c8.tar.gz cpython-1ae7ceba29771baf8f2e8d2d4c50a0355cb6b5c8.tar.bz2 |
gh-113696: Docs: Annotate PyObject_CallOneArg and PyObject_CallNoArgs as returning a strong reference (#113697)
-rw-r--r-- | Doc/data/refcounts.dat | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat index ef9ac16..0b48512 100644 --- a/Doc/data/refcounts.dat +++ b/Doc/data/refcounts.dat @@ -1589,6 +1589,13 @@ PyObject_Call:PyObject*:callable_object:0: PyObject_Call:PyObject*:args:0: PyObject_Call:PyObject*:kw:0: +PyObject_CallNoArgs:PyObject*::+1: +PyObject_CallNoArgs:PyObject*:callable_object:0: + +PyObject_CallOneArg:PyObject*::+1: +PyObject_CallOneArg:PyObject*:callable_object:0: +PyObject_CallOneArg:PyObject*:arg:0: + PyObject_CallFunction:PyObject*::+1: PyObject_CallFunction:PyObject*:callable_object:0: PyObject_CallFunction:const char*:format:: |