On Tue, Nov 20, 2012 at 07:27:31AM +0900, FUJITA Tomonori wrote:
> On Mon, 19 Nov 2012 09:12:07 -0800
> Ben Pfaff wrote:
>
> > Why doesn't Mac OS X have the POLL* constants? Mac OS X is a Unix
> > variant and does have the poll() system call.
>
> https://github.com/mxcl/homebrew/issues/9531
Th
Hi,
On Mon, 19 Nov 2012 09:12:07 -0800
Ben Pfaff wrote:
> Why doesn't Mac OS X have the POLL* constants? Mac OS X is a Unix
> variant and does have the poll() system call.
https://github.com/mxcl/homebrew/issues/9531
___
dev mailing list
dev@openvswi
On Mon, Nov 19, 2012 at 03:50:52AM +0900, FUJITA Tomonori wrote:
> Python doesn't have select.POLL* constants on some architectures
> (e.g. MacOSX). This code needs to define the constants for itself. It
> uses select.POLL* constants only internally (doesn't pass them
> outside). So there is no har
Python doesn't have select.POLL* constants on some architectures
(e.g. MacOSX). This code needs to define the constants for itself. It
uses select.POLL* constants only internally (doesn't pass them
outside). So there is no harm even if the definition would conflict
with Python's those.
Signed-off-