| 1 | initial version |
This seems to be a Windows-specific bug. It will only be a problem if you use the time=True argument.
You could get around this by using timeit instead, like:
sage: T = timeit('qsieve(n)', repeat=1, number=1)
in this case T is a SageTimeitResult object which you can query like:
sage: T.stats
(1, 1, 3, 2.885032892227173, u's')
The bug is now this ticket: https://trac.sagemath.org/ticket/28696
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.