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 vstinner
Date 2011-10-01.23:32:54
SpamBayes Score 5.160102e-05
Marked as misclassified No
Message-id <1317511977.11.0.738521421258.issue13088@psf.upfronthosting.co.za>
In-reply-to
Content
CPython source code contains a lot of duplicate "0123456789abcdef" constants, declared as static variables. Attached patch uses one unique variable. Use also Py_hexdigit instead of ((c>9) ? c+'a'-10 : c + '0') in binascii, _hashopenssl, md5, sha1, sha256 and sha512 modules.
History
Date User Action Args
2011-10-01 23:32:57vstinnersetrecipients: + vstinner
2011-10-01 23:32:57vstinnersetmessageid: <1317511977.11.0.738521421258.issue13088@psf.upfronthosting.co.za>
2011-10-01 23:32:56vstinnerlinkissue13088 messages
2011-10-01 23:32:56vstinnercreate