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 LambertDW
Recipients LambertDW
Date 2009-12-10.02:40:57
SpamBayes Score 0.015404239
Marked as misclassified No
Message-id <1260412859.57.0.915574583917.issue7466@psf.upfronthosting.co.za>
In-reply-to
Content
Further isolation, following change removes segmentation fault: 

        digital_roots = tuple(map(digital_root,factorization))

becomes

        digital_roots = [digital_root(factor) for factor in 
factorization]
History
Date User Action Args
2009-12-10 02:40:59LambertDWsetrecipients: + LambertDW
2009-12-10 02:40:59LambertDWsetmessageid: <1260412859.57.0.915574583917.issue7466@psf.upfronthosting.co.za>
2009-12-10 02:40:58LambertDWlinkissue7466 messages
2009-12-10 02:40:58LambertDWcreate