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 pitrou
Date 2017-06-29.19:49:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498765750.02.0.334201584192.issue30807@psf.upfronthosting.co.za>
In-reply-to
Content
The C setitimer() function supports intervals with microsecond resolution.  However, Python's setitimer() takes a float and then converts it to a C `struct timeval`, which can round down to zero.  The consequence is that the timer is disabled (timeval == {0,0}) while the user asked for a one microsecond timeout.
History
Date User Action Args
2017-06-29 19:49:10pitrousetrecipients: + pitrou
2017-06-29 19:49:10pitrousetmessageid: <1498765750.02.0.334201584192.issue30807@psf.upfronthosting.co.za>
2017-06-29 19:49:09pitroulinkissue30807 messages
2017-06-29 19:49:09pitroucreate