[Python-checkins] r74256 - python/trunk/Doc/c-api/typeobj.rst
georg.brandl
python-checkins at python.org
Wed Jul 29 18:32:30 CEST 2009
Author: georg.brandl
Date: Wed Jul 29 18:32:30 2009
New Revision: 74256
Log:
#6336: Add nb_divide.
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 Wed Jul 29 18:32:30 2009
@@ -1160,6 +1160,7 @@
binaryfunc nb_add;
binaryfunc nb_subtract;
binaryfunc nb_multiply;
+ binaryfunc nb_divide;
binaryfunc nb_remainder;
binaryfunc nb_divmod;
ternaryfunc nb_power;
More information about the Python-checkins
mailing list