[issue12056] "…" (HORIZONTAL ELLIPSIS) should be an alternative syntax for "..." (FULL STOP FULL STOP FULL STOP)

Xavier Morel report at bugs.python.org
Wed May 19 02:06:18 EDT 2021


Xavier Morel <xavier.morel at 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 <report at bugs.python.org>
<https://bugs.python.org/issue12056>
_______________________________________


More information about the Python-bugs-list mailing list