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.

Unsupported provider

Author dmalcolm
Recipients PaulMcMillan, Vlado.Boza, dmalcolm, koniiiik, vstinner
Date 2012-04-19.23:59:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334879988.21.0.498204056462.issue14621@psf.upfronthosting.co.za>
In-reply-to
Content
$ gdb --eval-command="break _PyRandom_Init" --eval-command="run" --eval-command="print _Py_HashSecret" --eval-command="set _Py_HashSecret.prefix=0xcdcdcd00" --eval-command="print _Py_HashSecret" --eval-command="continue" -eval-command="continue" --args python -c 'a="\x00\xcf\x0b\x96\x19"; b="\x00\x6d\x29\x45\x18"; print(hash(a)); print(hash(b))'

On 32-bit:
$1 = {prefix = 0, suffix = 0}
$2 = {prefix = -842150656, suffix = 0}
1220138288
1220138288

On 64-bit:
$1 = {prefix = 0, suffix = 0}
$2 = {prefix = 3452816640, suffix = 0}
Continuing.
4087671194599937328
-1679444439011306192
History
Date User Action Args
2012-04-19 23:59:48dmalcolmsetrecipients: + dmalcolm, vstinner, PaulMcMillan, Vlado.Boza, koniiiik
2012-04-19 23:59:48dmalcolmsetmessageid: <1334879988.21.0.498204056462.issue14621@psf.upfronthosting.co.za>
2012-04-19 23:59:47dmalcolmlinkissue14621 messages
2012-04-19 23:59:47dmalcolmcreate