diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-03-17 08:19:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 08:19:28 (GMT) |
commit | a45b695b9fcfbbb0a087222abc5c8d691a7d2770 (patch) | |
tree | cd06e92d2effe5931dff3b29060e274f41158a68 /Doc/data | |
parent | 58ec58a42bece5b2804b178c7a6a7e67328465db (diff) | |
download | cpython-a45b695b9fcfbbb0a087222abc5c8d691a7d2770.zip cpython-a45b695b9fcfbbb0a087222abc5c8d691a7d2770.tar.gz cpython-a45b695b9fcfbbb0a087222abc5c8d691a7d2770.tar.bz2 |
bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)
PyObject_GenericSetDict() takes three arguments, not two.
Diffstat (limited to 'Doc/data')
-rw-r--r-- | Doc/data/refcounts.dat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat index b55e972..4dacbe2 100644 --- a/Doc/data/refcounts.dat +++ b/Doc/data/refcounts.dat @@ -1673,7 +1673,8 @@ PyObject_GenericSetAttr:PyObject*:name:0: PyObject_GenericSetAttr:PyObject*:value:+1: PyObject_GenericSetDict:int::: -PyObject_GenericSetDict:PyObject*:o:+1: +PyObject_GenericSetDict:PyObject*:o:0: +PyObject_GenericSetDict:PyObject*:value:+1: PyObject_GenericSetDict:void*:context:: PyObject_GetAttr:PyObject*::+1: |