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 giampaolo.rodola
Recipients giampaolo.rodola, pitrou
Date 2008-01-28.21:19:36
SpamBayes Score 0.022650447
Marked as misclassified No
Message-id <1201555177.48.0.790732565137.issue1952@psf.upfronthosting.co.za>
In-reply-to
Content
> 1. it's a shame the tests are skipped for windows or macintosh, but it
> was just the same in the original version

Yeah... I'm probably not the best person for talking about this low
level stuff but since sockets seem to be the most portable thing
accepted by select.select, maybe a listening socket could be used
instead of a process pipe.

> 2. I don't think sys.platform[:3] can be equal to 'riscos'

You're right. The original version was that way and I didn't notice it
was wrong since I've put hands on unittest stuff only.
I think this could be fine:

- if sys.platform[:3] in ('win', 'mac', 'os2', 'riscos'):
+ if sys.platform in ('win16', 'win32', 'win64', 'mac', 'os2', 'riscos'):
History
Date User Action Args
2008-01-28 21:19:37giampaolo.rodolasetspambayes_score: 0.0226504 -> 0.022650447
recipients: + giampaolo.rodola, pitrou
2008-01-28 21:19:37giampaolo.rodolasetspambayes_score: 0.0226504 -> 0.0226504
messageid: <1201555177.48.0.790732565137.issue1952@psf.upfronthosting.co.za>
2008-01-28 21:19:36giampaolo.rodolalinkissue1952 messages
2008-01-28 21:19:36giampaolo.rodolacreate