Message144754
| 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:57 | vstinner | set | recipients: + vstinner |
| 2011-10-01 23:32:57 | vstinner | set | messageid: <1317511977.11.0.738521421258.issue13088@psf.upfronthosting.co.za> |
| 2011-10-01 23:32:56 | vstinner | link | issue13088 messages |
| 2011-10-01 23:32:56 | vstinner | create | |