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 ferringb
Recipients ferringb, ncoghlan, pitrou
Date 2011-08-30.02:07:46
SpamBayes Score 0.0001236464
Marked as misclassified No
Message-id <1314670068.06.0.54106902457.issue12856@psf.upfronthosting.co.za>
In-reply-to
Content
> the test must be skipped where os.fork() isn't available (namely, under Windows)

Done, although I still humbly suggest telling windows to bugger off ;)

> I would do os.read(fd, 100) (or some other large value) rather than os.read(fd, 6), so that the test doesn't depend on the exact length of the random sequences produced

100 is no different than 6 (same potential exists); better to just use the length from the parent side access to the PRNG.  That leaves open the unlikely scenario of child returning 7 chars, parent 6, and child/parent agreeing on the first 6... which would very likely be a bug anyways.
History
Date User Action Args
2011-08-30 02:07:48ferringbsetrecipients: + ferringb, ncoghlan, pitrou
2011-08-30 02:07:48ferringbsetmessageid: <1314670068.06.0.54106902457.issue12856@psf.upfronthosting.co.za>
2011-08-30 02:07:47ferringblinkissue12856 messages
2011-08-30 02:07:47ferringbcreate