New submission from Gary Litvin <lit...@skylit.com>:

>>> x = 'a'
>>> x is 'a'
True
>>> if x is 'a':
        print(x)

SyntaxError: "is" with a literal. Did you mean "=="?

How come?

----------
messages: 386575
nosy: garylitvin
priority: normal
severity: normal
status: open
title: is with literals in 3.8 release
versions: Python 3.8, Python 3.9

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

Reply via email to