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 barry-scott
Recipients Chen.Huang, X-Istence, barry-scott, meador.inge, ndousis, ronaldoussoren
Date 2012-06-24.12:44:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340541899.04.0.80874169369.issue10910@psf.upfronthosting.co.za>
In-reply-to
Content
I'm happy to review patches or create them for you.

I see a related set of errors on Mac OS X that are down to issues in bytes_methods.py that mirror the pyport.h issues.

In C++ isspace and friends are functions not macros.
You cannot go around defining them.

Here are the lines in python2.7 that cause compilation errors for me.

/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/bytes_methods.h:#undef isspace
/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/bytes_methods.h:#define isspace(c) undefined_isspace(c)
History
Date User Action Args
2012-06-24 12:44:59barry-scottsetrecipients: + barry-scott, ronaldoussoren, meador.inge, X-Istence, ndousis, Chen.Huang
2012-06-24 12:44:59barry-scottsetmessageid: <1340541899.04.0.80874169369.issue10910@psf.upfronthosting.co.za>
2012-06-24 12:44:58barry-scottlinkissue10910 messages
2012-06-24 12:44:58barry-scottcreate