New submission from Alex <2423067...@qq.com>:
In early versions of python, programmers can simply swap True and False by >>> True, False = False, True Then True and False and None become keywords so programmers can't change their value. ... is also a keyword, but Ellipsis is not. So the code below is right: >>> Ellipsis = 1 >>> print(Ellipsis) 1 If Ellipsis become a keyword, this will be better. ---------- components: Interpreter Core messages: 376018 nosy: Alex-Python-Programmer priority: normal severity: normal status: open title: An Advice on Turning Ellipsis into Keyword type: enhancement versions: Python 3.8 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue41652> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com