From 44e5cd3e517e266eb89281ace5033571179e8931 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 15 Mar 2009 21:46:00 +0000 Subject: [PATCH] #5488: add missing struct member. --- Doc/c-api/typeobj.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index 24f508e8b3a..a320d9e6764 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;