[issue16953] select module compile errors with broken poll()

2013-01-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1d33c79d2f6b by Charles-François Natali in branch '2.7': Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. http://hg.python.org/cpython/rev/1d33c79d2f6b New changeset 101e821e5e70 by Charles-François Natali in branch

[issue16953] select module compile errors with broken poll()

2013-01-19 Thread Charles-François Natali
Charles-François Natali added the comment: Committed, thanks for the patch! -- stage: - committed/rejected status: open - closed versions: +Python 2.7, Python 3.2, Python 3.4 ___ Python tracker rep...@bugs.python.org

[issue16953] select module compile errors with broken poll()

2013-01-18 Thread Charles-François Natali
Charles-François Natali added the comment: Could you provide the patch? It's trivial, but at least we'll make sure the patch fixes the problem on your platform. -- nosy: +neologix ___ Python tracker rep...@bugs.python.org

[issue16953] select module compile errors with broken poll()

2013-01-18 Thread Jeffrey Armstrong
Jeffrey Armstrong added the comment: I've attached the patch, and I probably should have done so in the first place. It applies to Python 3.3.0. The resulting code compiles fine on m68k-atari-mint. It shouldn't affect any of the major platforms. -- Added file:

[issue16953] select module compile errors with broken poll()

2013-01-13 Thread Jeffrey Armstrong
New submission from Jeffrey Armstrong: On a platform with a broken poll() function (as detected during configure), Modules/selectmodule.c fails to compile. The error occurs at two points: ./Modules/selectmodule.c:2100: `select_poll' undeclared here (not in a function)

[issue16953] select module compile errors with broken poll()

2013-01-13 Thread Jeffrey Armstrong
Changes by Jeffrey Armstrong jeffrey.armstr...@approximatrix.com: -- type: - compile error ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16953 ___