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 JohnSchneider
Recipients JohnSchneider, ezio.melotti
Date 2012-07-15.21:19:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1342387162.35.0.975176855172.issue15362@psf.upfronthosting.co.za>
In-reply-to
Content
Revision 36793 introduced a libc wrapper for FreeBSD 5.x which addressed some UTF issues. Unfortunately, this causes C compilation errors for certain ports.

Also reference issues 10910, 1455641

This change is no longer applicable for FreeBSD 9.  I'm not sure what version of FreeBSD made it not longer applicable, but there were reports of it still being necessary for FreebSD 7. FreeBSD 6 - 8 should be tested with this test script:
------------------------
#!/usr/bin/env python

from ctypes import *

cdll.LoadLibrary("libc.so.7")
libc = CDLL("libc.so.7")

assert libc.isspace(0xa0) == 0
------------------------

I've also attached a patch for python 2.7.3.
History
Date User Action Args
2012-07-15 21:19:22JohnSchneidersetrecipients: + JohnSchneider, ezio.melotti
2012-07-15 21:19:22JohnSchneidersetmessageid: <1342387162.35.0.975176855172.issue15362@psf.upfronthosting.co.za>
2012-07-15 21:19:21JohnSchneiderlinkissue15362 messages
2012-07-15 21:19:21JohnSchneidercreate