diff options
author | Georg Brandl <georg@python.org> | 2009-03-15 21:46:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-15 21:46:00 (GMT) |
commit | 44e5cd3e517e266eb89281ace5033571179e8931 (patch) | |
tree | f2ff938047db05f1b67a0dff563aad373435b792 /Doc/c-api | |
parent | 5a95b21fee671bde9ab843a6a503cce5dafeb002 (diff) | |
download | cpython-44e5cd3e517e266eb89281ace5033571179e8931.zip cpython-44e5cd3e517e266eb89281ace5033571179e8931.tar.gz cpython-44e5cd3e517e266eb89281ace5033571179e8931.tar.bz2 |
#5488: add missing struct member.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/typeobj.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index 24f508e..a320d9e 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -1180,6 +1180,7 @@ Number Object Structures binaryfunc nb_inplace_add; binaryfunc nb_inplace_subtract; binaryfunc nb_inplace_multiply; + binaryfunc nb_inplace_divide; binaryfunc nb_inplace_remainder; ternaryfunc nb_inplace_power; binaryfunc nb_inplace_lshift; |