add nb_inplace_divide for python 2
authorTom Tromey <tom@tromey.com>
Mon, 23 May 2016 16:58:51 +0000 (10:58 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 24 May 2016 16:05:58 +0000 (10:05 -0600)
commite2b7f516fc688975ea22ad3cf2066c6972454fdc
tree62371f526ae6582a1b5f9b5e347977f32f0c7776
parent1957f6b89f3db02d51e3e3361de6af073a03f19d
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.
gdb/ChangeLog
gdb/python/py-value.c