diff options
author | Georg Brandl <georg@python.org> | 2009-07-29 16:32:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-07-29 16:32:30 (GMT) |
commit | 019e8dd7fcfca6de1e6050e83c2dd7c6de2c6524 (patch) | |
tree | af25de267fa68e0890c50306496c1d788c14ee26 /Doc/c-api | |
parent | f3d520cc16249fd7e433bd27ddb45be83f2c50bd (diff) | |
download | cpython-019e8dd7fcfca6de1e6050e83c2dd7c6de2c6524.zip cpython-019e8dd7fcfca6de1e6050e83c2dd7c6de2c6524.tar.gz cpython-019e8dd7fcfca6de1e6050e83c2dd7c6de2c6524.tar.bz2 |
#6336: Add nb_divide.
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 abcd115..0566375 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -1160,6 +1160,7 @@ Number Object Structures binaryfunc nb_add; binaryfunc nb_subtract; binaryfunc nb_multiply; + binaryfunc nb_divide; binaryfunc nb_remainder; binaryfunc nb_divmod; ternaryfunc nb_power; |