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 vstinner
Recipients benjamin.peterson, christian.heimes, doko, ned.deily, serhiy.storchaka, skrah, vstinner, ztane
Date 2016-09-14.22:56:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwayoDzWPe0muj_4NzCpsvihgD6ymDqJT0HV_=HG+GRPAQ@mail.gmail.com>
In-reply-to <1473802231.48.0.0798560909822.issue28055@psf.upfronthosting.co.za>
Content
Christian Heimes added the comment:
> The main reason for two different hash algorithms was missing support for
64bit integer types. Python 3.4 was targeting platforms that had no 64bit
integer support at all (IIRC SPARC). Nowaday Python requires 64bit ints to
compile.
>
> I'm all in favor to remove FVN2 and use SipHash24 on all platforms. Let's
deprecated it now and remove it in 3.7.

Python 3.5.0 doesn't compile if the compiler doesn't support 64 signed
integer: see pytime.h ;-)

Are you aware of platforms still using FVN2?

I'm also in favor of deprecating it. Maybe use #warning in C to log a
deprecation warning.
History
Date User Action Args
2016-09-14 22:57:00vstinnersetrecipients: + vstinner, doko, christian.heimes, benjamin.peterson, ned.deily, skrah, serhiy.storchaka, ztane
2016-09-14 22:56:59vstinnerlinkissue28055 messages
2016-09-14 22:56:59vstinnercreate