This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Zuzu_Typ
Recipients Zuzu_Typ
Date 2019-03-20.12:01:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1553083293.5.0.811205671176.issue36379@roundup.psfhosted.org>
In-reply-to
Content
Using the C-API, the inplace_pow numbermethod is always called with the third argument pointing to an invalid address.

The reason is likely that self.__ipow__ only takes one argument, resulting in a binaryfunc (self, arg), though inplace_pow is a ternaryfunc.
When trying to use the third argument in any way, Python crashes.

The third arg should be nonexistent, NULL or Py_None.
History
Date User Action Args
2019-03-20 12:01:33Zuzu_Typsetrecipients: + Zuzu_Typ
2019-03-20 12:01:33Zuzu_Typsetmessageid: <1553083293.5.0.811205671176.issue36379@roundup.psfhosted.org>
2019-03-20 12:01:33Zuzu_Typlinkissue36379 messages
2019-03-20 12:01:33Zuzu_Typcreate