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 Arfrever
Recipients Arfrever, floppymaster, georg.brandl, vstinner
Date 2012-05-02.18:46:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335984363.24.0.0271486124013.issue13032@psf.upfronthosting.co.za>
In-reply-to
Content
UTF-8 is default encoding in Python 3, so statements with UTF-8 characters could be accepted.

Any strings are very rare in these statements. On my system, only generated TYPES.py contains 2 strings:
# Included from bits/select.h
__FD_ZERO_STOS = "stosq"
__FD_ZERO_STOS = "stosl"

/usr/include/bits/select.h contains:
# if __WORDSIZE == 64
#  define __FD_ZERO_STOS "stosq"
# else
#  define __FD_ZERO_STOS "stosl"
# endif
History
Date User Action Args
2012-05-02 18:46:03Arfreversetrecipients: + Arfrever, georg.brandl, vstinner, floppymaster
2012-05-02 18:46:03Arfreversetmessageid: <1335984363.24.0.0271486124013.issue13032@psf.upfronthosting.co.za>
2012-05-02 18:46:02Arfreverlinkissue13032 messages
2012-05-02 18:46:02Arfrevercreate