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 serhiy.storchaka
Recipients alex, arigo, fijall, rbcollins, rhettinger, serhiy.storchaka
Date 2015-03-17.22:43:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426632234.13.0.925654815151.issue23552@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a patch that emits a warning using the warnings module. The warning is output to stderr and can be suppressed with the -Wignore option, as all other warnings.

$ ./python -m timeit -n1 -r 10 -s "import time, random" -- "time.sleep(random.random())"
1 loops, best of 10: 79.6 msec per loop
:0: UserWarning: These test results likely aren't reliable.  The worst
time was more than four times slower than the best time.
$ ./python -Wignore -m timeit -n1 -r 10 -s "import time, random" -- "time.sleep(random.random())"
1 loops, best of 10: 16.2 msec per loop
History
Date User Action Args
2015-03-17 22:43:54serhiy.storchakasetrecipients: + serhiy.storchaka, arigo, rhettinger, rbcollins, alex, fijall
2015-03-17 22:43:54serhiy.storchakasetmessageid: <1426632234.13.0.925654815151.issue23552@psf.upfronthosting.co.za>
2015-03-17 22:43:54serhiy.storchakalinkissue23552 messages
2015-03-17 22:43:54serhiy.storchakacreate