diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/python/py-value.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9359532..a38b98c 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 7dba0ad..268f6c8 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 */ |