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 skip.montanaro
Recipients skip.montanaro
Date 2009-01-02.16:41:27
SpamBayes Score 6.7385436e-06
Marked as misclassified No
Message-id <18782.17333.839740.4416@montanaro-dyndns-org.local>
In-reply-to
Content
Consider this timeit run:

    % python -m timeit '-1.0e-3 < -0.0001 < 1.0e-3'
    option -1 not recognized
    use -h/--help for command line help

As it turns out this works:

    % python -m timeit -- '-1.0e-3 < -0.0001 < 1.0e-3'
    10000000 loops, best of 3: 0.192 usec per loop

but the output using the -h flag doesn't report it as a possibility.  It
probably should.
History
Date User Action Args
2009-01-02 16:41:28skip.montanarosetrecipients: + skip.montanaro
2009-01-02 16:41:27skip.montanarolinkissue4810 messages
2009-01-02 16:41:27skip.montanarocreate