summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2016-05-23 10:58:51 -0600
committerTom Tromey <tom@tromey.com>2016-05-24 10:05:58 -0600
commite2b7f516fc688975ea22ad3cf2066c6972454fdc (patch)
tree62371f526ae6582a1b5f9b5e347977f32f0c7776
parent1957f6b89f3db02d51e3e3361de6af073a03f19d (diff)
downloadbinutils-gdb-e2b7f516fc688975ea22ad3cf2066c6972454fdc.tar.gz
add nb_inplace_divide for python 2
Python 2's PyNumberMethods has nb_inplace_divide, but Python 3 does not. This patch adds it for Python 2. This buglet didn't cause much fallout because the only non-NULL entry in value_object_as_number after this is for valpy_divide; and the missing slot caused it to slide up to nb_floor_divide (where nb_true_divide was intended). 2016-05-24 Tom Tromey <tom@tromey.com> * python/py-value.c (value_object_as_number): Add nb_inplace_divide for Python 2.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/python/py-value.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9359532193e..a38b98c0ba6 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2016-05-24 Tom Tromey <tom@tromey.com>
+
+ * python/py-value.c (value_object_as_number): Add
+ nb_inplace_divide for Python 2.
+
2016-05-23 Tom Tromey <tom@tromey.com>
PR python/17981:
diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c
index 7dba0ad8d53..268f6c8ad6b 100644
--- a/gdb/python/py-value.c
+++ b/gdb/python/py-value.c
@@ -1827,6 +1827,9 @@ static PyNumberMethods value_object_as_number = {
NULL, /* nb_inplace_add */
NULL, /* nb_inplace_subtract */
NULL, /* nb_inplace_multiply */
+#ifndef IS_PY3K
+ NULL, /* nb_inplace_divide */
+#endif
NULL, /* nb_inplace_remainder */
NULL, /* nb_inplace_power */
NULL, /* nb_inplace_lshift */