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 pitrou
Recipients benjamin.peterson, georg.brandl, giampaolo.rodola, gvanrossum, koobs, larry, ned.deily, pitrou, python-dev, sbt, serhiy.storchaka, vstinner
Date 2013-10-18.09:49:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1278020598.90003920.1382089717017.JavaMail.root@zimbra10-e2.priv.proxad.net>
In-reply-to <1382087315.49.0.385901495316.issue19262@psf.upfronthosting.co.za>
Content
> ======================================================================
> FAIL: test_call_later
> (test.test_asyncio.test_events.SelectEventLoopTests)
> ----------------------------------------------------------------------
> Traceback (most recent call last):
>   File
>   "/usr/home/buildbot/python/3.x.koobs-freebsd9/build/Lib/test/test_asyncio/test_events.py",
>   line 241, in test_call_later
>     self.assertTrue(0.09 <= t1-t0 <= 0.12, t1-t0)
> AssertionError: False is not true : 0.12008954107295722

This one is a classical timing issue. The test is too optimistic:
many buildbots can be quite slow or loaded. Other timing tests in the
stdlib allow for much more slack.

(e.g. call_later with 0.5 and check that the resulting delay
is between 0.4 and 1.0)
History
Date User Action Args
2013-10-18 09:49:04pitrousetrecipients: + pitrou, gvanrossum, georg.brandl, vstinner, larry, giampaolo.rodola, benjamin.peterson, ned.deily, python-dev, sbt, serhiy.storchaka, koobs
2013-10-18 09:49:04pitroulinkissue19262 messages
2013-10-18 09:49:04pitroucreate