commit | e8fc640349dee549e4804df643cf6653a954e125 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Apr 16 16:44:51 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Apr 16 16:44:51 2002 +0000 |
tree | 3a03234b84fbca445f0c9241b2c9d2cdd8a90619 | |
parent | 7766091e0447d6eb641526c8e70b13ab62f7b561 [diff] |
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.