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 mark.dickinson
Recipients cmcqueen1975, dtorp, josiahcarlson, mark.dickinson, tim.peters
Date 2010-01-26.11:05:15
SpamBayes Score 0.00013435648
Marked as misclassified No
Message-id <1264503917.64.0.517034329401.issue1205239@psf.upfronthosting.co.za>
In-reply-to
Content
One other thought: you could always compute the expression

  crc >> (crc_width - 8)

as

  crc << 8 >> crc_width

Since you're computing crc << 8 anyway, this doesn't increase the operations count, so probably wouldn't significant impact performance.
History
Date User Action Args
2010-01-26 11:05:17mark.dickinsonsetrecipients: + mark.dickinson, tim.peters, josiahcarlson, dtorp, cmcqueen1975
2010-01-26 11:05:17mark.dickinsonsetmessageid: <1264503917.64.0.517034329401.issue1205239@psf.upfronthosting.co.za>
2010-01-26 11:05:16mark.dickinsonlinkissue1205239 messages
2010-01-26 11:05:15mark.dickinsoncreate