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 xmorel
Recipients benjamin.peterson, brandon-rhodes, georg.brandl, xmorel
Date 2021-05-19.06:06:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1621404378.58.0.826243904006.issue12056@roundup.psfhosted.org>
In-reply-to
Content
> But if we allow for ellipsis, then would we not also have to start allowing characters like ≥ and ≤ in Python?

No, they're not defined as canonically equivalent to >= and <= by the Unicode specification:

    >>> unicodedata.normalize('NFKD', '…')
    ...
    >>> unicodedata.normalize('NFKD', '≤')
    ≤
History
Date User Action Args
2021-05-19 06:06:18xmorelsetrecipients: + xmorel, georg.brandl, benjamin.peterson, brandon-rhodes
2021-05-19 06:06:18xmorelsetmessageid: <1621404378.58.0.826243904006.issue12056@roundup.psfhosted.org>
2021-05-19 06:06:18xmorellinkissue12056 messages
2021-05-19 06:06:18xmorelcreate