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 pitrou
Recipients flox, pitrou
Date 2009-12-30.22:23:17
SpamBayes Score 4.2350534e-06
Marked as misclassified No
Message-id <1262211799.19.0.0827970391862.issue7607@psf.upfronthosting.co.za>
In-reply-to
Content
The fastsearch algorithm uses a 32-bit mask for the boyer-moore
compression table but stores it as a long.
Since longs can be wider than 32 bits on some platforms (especially,
most 64-bit Unixes), the actual mask width could be platform-dependant
so as to improve the efficiency of the algorithm. Using the SIZEOF_LONG
constant would probably do the trick.
History
Date User Action Args
2009-12-30 22:23:19pitrousetrecipients: + pitrou, flox
2009-12-30 22:23:19pitrousetmessageid: <1262211799.19.0.0827970391862.issue7607@psf.upfronthosting.co.za>
2009-12-30 22:23:17pitroulinkissue7607 messages
2009-12-30 22:23:17pitroucreate