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 brian.curtin, janglin, loewis, pitrou, schmir, vstinner
Date 2011-01-04.13:06:06
SpamBayes Score 0.00022799867
Marked as misclassified No
Message-id <1294146368.41.0.166511853443.issue9566@psf.upfronthosting.co.za>
In-reply-to
Content
r87733 fixes some conversions in:

 * Python/pythonrun.c
 * Objects/codeobject.c
 * Objects/typeobject.c
 * Objects/listobject.c
 * Modules/_ctypes/_ctypes.c
 * Modules/sha512module.c
 * Modules/unicodedata.c
 * Modules/selectmodule.c
 * Modules/pyexpat.c
 * Modules/audioop.c
 * Modules/sha1module.c
 * Modules/sha256module.c
 * Modules/_testcapimodule.c
 * Modules/md5module.c

For md5, sha1, sha256 and sha512: a smaller type (int) can be used for the local n variable. I don't know if it impacts performances or not. md5 and sha1 used "unsigned long", sha256 and sha512 used "int".
History
Date User Action Args
2011-01-04 13:06:08vstinnersetrecipients: + vstinner, loewis, pitrou, schmir, brian.curtin, janglin
2011-01-04 13:06:08vstinnersetmessageid: <1294146368.41.0.166511853443.issue9566@psf.upfronthosting.co.za>
2011-01-04 13:06:06vstinnerlinkissue9566 messages
2011-01-04 13:06:06vstinnercreate