[issue789290] Minor FP bug in object.c

2009-02-08 Thread Mark Dickinson
Mark Dickinson added the comment: Fix merged in r69437, r69440, r69441. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue789290] Minor FP bug in object.c

2009-02-08 Thread Mark Dickinson
Mark Dickinson added the comment: Fixed in the trunk in r69436. Will merge to 2.6, 3.1 and 3.0. ___ Python tracker ___ ___ Python-bugs-list

[issue789290] Minor FP bug in object.c

2009-01-31 Thread Mark Dickinson
Mark Dickinson added the comment: I'll take this. I think there *is* a problem here: on a system with 64-bit long, _Py_HashDouble can end up trying to cast the float value 2.**63 to a C long. Since 2.**63 doesn't fit in a long, we get undefined behaviour, according to the C standards. In m

[issue789290] Minor FP bug in object.c

2008-01-03 Thread Tim Peters
Tim Peters added the comment: Unassigned myself -- I don't care about this 4 years later either ;-) -- assignee: tim_one -> nobody nosy: +nobody Tracker <[EMAIL PROTECTED]> ___

[issue789290] Minor FP bug in object.c

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Tim, you are the expert in numbers. Is the patch still relevant for 2.5 and newer? -- assignee: -> tim_one keywords: +patch nosy: +tiran versions: +Python 2.5 -Python 2.2 Tracker <[EMAIL PROTECTED]>