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 flox
Recipients eric.smith, ezio.melotti, flox, lemburg, mark.dickinson, mathieui, r.david.murray, rhettinger
Date 2013-03-01.23:34:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362180886.61.0.52287313274.issue17331@psf.upfronthosting.co.za>
In-reply-to
Content
This is consistent:

>>> '¹'.isnumeric(), '¹'.isdigit(), '¹'.isdecimal()
(True, True, False)

>>> unicodedata.numeric('¹')
1.0
>>> unicodedata.digit('¹')
1
>>> unicodedata.decimal('¹')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: not a decimal
>>> 

Changing the title to focus on the issue with collections.namedtuple.
History
Date User Action Args
2013-03-01 23:34:46floxsetrecipients: + flox, lemburg, rhettinger, mark.dickinson, eric.smith, ezio.melotti, r.david.murray, mathieui
2013-03-01 23:34:46floxsetmessageid: <1362180886.61.0.52287313274.issue17331@psf.upfronthosting.co.za>
2013-03-01 23:34:46floxlinkissue17331 messages
2013-03-01 23:34:46floxcreate