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 apexo
Recipients apexo, docs@python, pitrou
Date 2010-06-01.06:35:17
SpamBayes Score 0.014936331
Marked as misclassified No
Message-id <1275374122.79.0.768137848872.issue8865@psf.upfronthosting.co.za>
In-reply-to
Content
okay, I've managed to put together a script that fairly consistently reproduces the problem on my (core2 duo 2,something GHz) machine

some parameters (sleep times) are randomized in each iteration, the script runs for 30 iterations, each for 1 second, and counts the number of events where the fd looks bogus (max 1 per iteration); some other events (fd correct, revents bogus are also reported, but not counted)

example output:
poll returned [(-3, 65535)], we were looking for fd 3
poll returned [(-3, 65535)], we were looking for fd 3
poll returned [(-3, 65535)], we were looking for fd 3
poll returned [(-3, 65535)], we were looking for fd 3
poll returned [(-3, 65535)], we were looking for fd 3
poll returned [(-1, 65535)], we were looking for fd 3
poll returned [(-1, 65535)], we were looking for fd 3
poll returned [(-1627358347, 60497)], we were looking for fd 3
should not get here; poll returned [(3, 0)]
poll returned [(-3, 65535)], we were looking for fd 3
9 events in 30 iterations
History
Date User Action Args
2010-06-01 06:35:23apexosetrecipients: + apexo, pitrou, docs@python
2010-06-01 06:35:22apexosetmessageid: <1275374122.79.0.768137848872.issue8865@psf.upfronthosting.co.za>
2010-06-01 06:35:20apexolinkissue8865 messages
2010-06-01 06:35:19apexocreate