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 serhiy.storchaka
Recipients Oren Milman, rhettinger, serhiy.storchaka
Date 2017-09-15.06:08:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1505455736.44.0.931496123045.issue31478@psf.upfronthosting.co.za>
In-reply-to
Content
There are several ways of solving this issue:

1. Verify that an actual int was returned and raise a TypeError if it wasn't.

2. Verify that an actual int was returned and fall back to the hash if it wasn't.

3. Use int.__abs__() instead of abs(), the result will be guaranteed int. The drawback is that this makes a copy of positive integers for int subclasses.

4. Check the sign of the seed and call int.__neg__() for negative values.
History
Date User Action Args
2017-09-15 06:08:56serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, Oren Milman
2017-09-15 06:08:56serhiy.storchakasetmessageid: <1505455736.44.0.931496123045.issue31478@psf.upfronthosting.co.za>
2017-09-15 06:08:56serhiy.storchakalinkissue31478 messages
2017-09-15 06:08:56serhiy.storchakacreate