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 terry.reedy
Recipients ezio.melotti, frederic.grosshans, terry.reedy, vstinner
Date 2021-04-25.01:27:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1619314077.29.0.133987516933.issue43925@roundup.psfhosted.org>
In-reply-to
Content
I verified the claim in 3.19.0a7 freshly compiled today.

>>> import unicodedata as ud
>>> ud.decomposition('\uac00')
''
>>> for cp in range(0xac00, 0xd7a4):
	if (s := ud.decomposition(chr(cp))) != '':
		print(cp, s)

>>>
History
Date User Action Args
2021-04-25 01:27:57terry.reedysetrecipients: + terry.reedy, vstinner, ezio.melotti, frederic.grosshans
2021-04-25 01:27:57terry.reedysetmessageid: <1619314077.29.0.133987516933.issue43925@roundup.psfhosted.org>
2021-04-25 01:27:57terry.reedylinkissue43925 messages
2021-04-25 01:27:56terry.reedycreate