[issue5154] OSX broken poll testing doesn't work

2011-05-07 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: -- resolution: - wont fix status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5154 ___

[issue5154] OSX broken poll testing doesn't work

2011-03-16 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com 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

[issue5154] OSX broken poll testing doesn't work

2011-03-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Florent: I don't understand why the traceback you show is related to this issue. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5154

[issue5154] OSX broken poll testing doesn't work

2010-08-15 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Same issue, probably, on buildbot PPC Tiger == ERROR: test_main (test.test_signal.InterProcessSignalTests)

[issue5154] OSX broken poll testing doesn't work

2010-08-04 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4, Python 2.5, Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5154

[issue5154] OSX broken poll testing doesn't work

2010-07-29 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com 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,

[issue5154] OSX broken poll testing doesn't work

2010-07-29 Thread James Y Knight
James Y Knight f...@users.sourceforge.net 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

[issue5154] OSX broken poll testing doesn't work

2009-04-14 Thread Nicolas Dumazet
Changes by Nicolas Dumazet nicd...@gmail.com: -- nosy: +nicdumz ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5154 ___ ___ Python-bugs-list

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: -- nosy: +ronaldoussoren ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5154 ___ ___

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com 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

[issue5154] OSX broken poll testing doesn't work

2009-03-04 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' billiej...@users.sourceforge.net: -- nosy: +giampaolo.rodola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5154 ___

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: In what specific way is poll() broken? -- nosy: +loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5154 ___

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Ben Bangert
Ben Bangert b...@groovie.org 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 mar...@v.loewis.de 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

[issue5154] OSX broken poll testing doesn't work

2009-02-04 Thread Ben Bangert
Ben Bangert b...@groovie.org 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