[issue7466] Segmentation fault after about 20 seconds on lenovo T500
David W. Lambert
report at bugs.python.org
Thu Dec 10 03:40:59 CET 2009
David W. Lambert <b49P23TIvg at stny.rr.com> added the comment:
Further isolation, following change removes segmentation fault:
digital_roots = tuple(map(digital_root,factorization))
becomes
digital_roots = [digital_root(factor) for factor in
factorization]
----------
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7466>
_______________________________________
More information about the Python-bugs-list
mailing list