[issue5154] OSX broken poll testing doesn't work

2011-05-07 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue5154] OSX broken poll testing doesn't work

2011-03-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: I propose to close this as won't fix. The reason: poll on OSX does work, but fairly limited in the kinds of file descriptors it works with. The HAVE_BROKEN_POLL test is meant to detect poll implementation that don't even manage to implement the API correctly

[issue5154] OSX broken poll testing doesn't work

2011-03-12 Thread Ronald Oussoren
Ronald Oussoren added the comment: Florent: I don't understand why the traceback you show is related to this issue. -- ___ Python tracker ___

[issue5154] OSX broken poll testing doesn't work

2010-08-15 Thread Florent Xicluna
Florent Xicluna added the comment: Same issue, probably, on buildbot "PPC Tiger" == ERROR: test_main (test.test_signal.InterProcessSignalTests) -- Traceback (m

[issue5154] OSX broken poll testing doesn't work

2010-08-04 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4, Python 2.5, Python 2.6, Python 3.0 ___ Python tracker ___ __

[issue5154] OSX broken poll testing doesn't work

2010-07-29 Thread James Y Knight
James Y Knight added the comment: The reason it's a problem is because a "device" is everything other than a socket, pipe, slave-side of tty, or file. That is, /dev/null, /dev/zero, /dev/tty, psuedo-tty masters from openpty (e.g. for running subprocesses), etc. I find it quite amazing that th

[issue5154] OSX broken poll testing doesn't work

2010-07-29 Thread Ronald Oussoren
Ronald Oussoren added the comment: Time to try to get this going again... What exactly is wrong with poll on OSX? Both the configure test and the runtime test for poll behavior work as designed. According to the first message there are other problems with poll on OSX, but without a clear d

[issue5154] OSX broken poll testing doesn't work

2009-04-14 Thread Nicolas Dumazet
Changes by Nicolas Dumazet : -- nosy: +nicdumz ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: poll(3) doesn't work for all types of filedescriptors on OSX. Specifically: BUGS The poll() system call currently does not support devices. (That's from the manpage of poll). This is why Apple doesn't expose select.poll in their build of Python. I

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Ben Bangert
Ben Bangert added the comment: Ah, sorry, misunderstanding. I'm not recommending that Python copy Apple's patch. I was pointing out that the HAVE_BROKEN_POLL test apparently doesn't work, and that *all* manually compiled copies of Python done on OSX will suffer this socket 35 error without havin

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: > I don't know specifically, Phil Jenvey probably would as he's the one > that told me it is. Apple apparently knows this an turns it off in their > version of Python that is supplied. That's not a sufficient reason to copy their work-around. A problem must be

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Ben Bangert
Ben Bangert added the comment: I don't know specifically, Phil Jenvey probably would as he's the one that told me it is. Apple apparently knows this an turns it off in their version of Python that is supplied. ___ Python tracker

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Martin v. Löwis
Martin v. Löwis added the comment: In what specific way is poll() broken? -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Ben Bangert
New submission from Ben Bangert : OSX 10.5 has a broken poll, this is an already known issue as I noticed there's even a HAVE_BROKEN_POLL option that is in the source: http://mail.python.org/pipermail/python-checkins/2006-April/051710.html However, this run-time check apparently does not work, a