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 tim.peters
Recipients mark.dickinson, tim.peters
Date 2019-08-20.15:42:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566315762.28.0.408407507817.issue37893@roundup.psfhosted.org>
In-reply-to
Content
For example, these should all raise ValueError instead:

>>> pow(2, -1, 1)
0
>>> pow(1, -1, 1)
0
>>> pow(0, -1, 1)
0
>>> pow(2, -1, -1)
0
>>> pow(1, -1, -1)
0
>>> pow(0, -1, -1)
0
History
Date User Action Args
2019-08-20 15:42:42tim.peterssetrecipients: + tim.peters, mark.dickinson
2019-08-20 15:42:42tim.peterssetmessageid: <1566315762.28.0.408407507817.issue37893@roundup.psfhosted.org>
2019-08-20 15:42:41tim.peterslinkissue37893 messages
2019-08-20 15:42:41tim.peterscreate