]> granicus.if.org Git - python/commit
SF bug 544647.
authorGuido van Rossum <guido@python.org>
Tue, 16 Apr 2002 16:44:51 +0000 (16:44 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 16 Apr 2002 16:44:51 +0000 (16:44 +0000)
commite8fc640349dee549e4804df643cf6653a954e125
tree3a03234b84fbca445f0c9241b2c9d2cdd8a90619
parent7766091e0447d6eb641526c8e70b13ab62f7b561
SF bug 544647.

PyNumber_InPlaceMultiply insisted on calling sq_inplace_repeat if it
existed, even if nb_inplace_multiply also existed and the arguments
weren't right for sq_inplace_repeat.  Change this to only use
sq_inplace_repeat if nb_inplace_multiply isn't defined.

Bugfix candidate.
Lib/test/test_descr.py
Objects/abstract.c