[Python-checkins] r70392 - python/trunk/Doc/c-api/typeobj.rst

georg.brandl python-checkins at python.org
Sun Mar 15 22:46:00 CET 2009


Author: georg.brandl
Date: Sun Mar 15 22:46:00 2009
New Revision: 70392

Log:
#5488: add missing struct member.

Modified:
   python/trunk/Doc/c-api/typeobj.rst

Modified: python/trunk/Doc/c-api/typeobj.rst
==============================================================================
--- python/trunk/Doc/c-api/typeobj.rst	(original)
+++ python/trunk/Doc/c-api/typeobj.rst	Sun Mar 15 22:46:00 2009
@@ -1180,6 +1180,7 @@
             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;


More information about the Python-checkins mailing list