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.

作者 dmalcolm
收信人 dmalcolm, gps, pitrou
日期 2010-07-03.00:03:33
SpamBayes Score 7.651707e-05
Marked as misclassified
Message-id <1278115416.37.0.677252250136.issue9146@psf.upfronthosting.co.za>
In-reply-to
内容
Not quite ready yet:

Named methods work:
$ OPENSSL_FORCE_FIPS_MODE=1 ./python -c "import hashlib; m = hashlib.md5(); m.update('abc\n'); print m.hexdigest()"0bee89b07a248e27c83fc3d5951213c1
[15741 refs]

but lookup by name still fails:
OPENSSL_FORCE_FIPS_MODE=1 ./python -c "import hashlib; m = hashlib.new('md5'); m.update('abc\n'); print m.hexdigest()"
Segmentation fault (core dumped)
历史
日期 用户 动作 参数
2010-07-03 00:03:36dmalcolm修改recipients: + dmalcolm, pitrou, gps
2010-07-03 00:03:36dmalcolm修改messageid: <1278115416.37.0.677252250136.issue9146@psf.upfronthosting.co.za>
2010-07-03 00:03:34dmalcolm链接issue9146 messages
2010-07-03 00:03:33dmalcolm创建