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 vstinner
Recipients paul.moore, pitrou, steve.dower, tim.golden, vstinner, zach.ware
Date 2017-07-03.22:03:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1499119427.24.0.788905684987.issue29796@psf.upfronthosting.co.za>
In-reply-to
Content
On Python 3, time.sleep(seconds) rounds seconds towards +Infinity: see bpo-22117, commot cb29f0177c91ebb739b89d8cc4ba223785c94d61. time.sleep(0.0001) sleeps 15.6 ms on Windows.

On Python 2.7, time.sleep(seconds) rounds towards zero. time.sleep(0.0001) sleeps 0 ms on Windows, and so the  collect_in_thread() thread calls gc.collect() in a sleep.
History
Date User Action Args
2017-07-03 22:03:47vstinnersetrecipients: + vstinner, paul.moore, pitrou, tim.golden, zach.ware, steve.dower
2017-07-03 22:03:47vstinnersetmessageid: <1499119427.24.0.788905684987.issue29796@psf.upfronthosting.co.za>
2017-07-03 22:03:47vstinnerlinkissue29796 messages
2017-07-03 22:03:47vstinnercreate