Xavier Morel <xavier.mo...@masklinn.net> added the comment:

> 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', '≤')
    ≤

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue12056>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to