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 John Cooke
Recipients John Cooke
Date 2018-06-16.17:12:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529169153.27.0.56676864532.issue33880@psf.upfronthosting.co.za>
In-reply-to
Content
from collections import namedtuple
# create a namedtuple whose members are:
# 00B5;MICRO SIGN;Ll;
# 03BC;GREEK SMALL LETTER MU;Ll
# these are both legal identifier names
names = ['\u00b5', '\u03bc']
for name in names:
    assert name.isidentifier()
mu = namedtuple('mu', names)

# should have raised ValueError, but instead get SyntaxError
History
Date User Action Args
2018-06-16 17:12:33John Cookesetrecipients: + John Cooke
2018-06-16 17:12:33John Cookesetmessageid: <1529169153.27.0.56676864532.issue33880@psf.upfronthosting.co.za>
2018-06-16 17:12:33John Cookelinkissue33880 messages
2018-06-16 17:12:33John Cookecreate