Python/3

From Omnia
Revision as of 21:31, 18 July 2024 by Kenneth (talk | contribs) (Created page with "== SyntaxWarning Literals == <blockquote> The compiler now produces a SyntaxWarning when identity checks (is and is not) are used with certain types of literals (e.g. strings, numbers). These can often work by accident in CPython, but are not guaranteed by the language spec. The warning advises users to use equality tests (== and !=) instead. (Contributed by Serhiy Storchaka in bpo-34850.) </blockquote> https://docs.python.org/3.8/whatsnew/3.8.html#changes-in-python-be...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SyntaxWarning Literals

The compiler now produces a SyntaxWarning when identity checks (is and is not) are used with certain types of literals (e.g. strings, numbers). These can often work by accident in CPython, but are not guaranteed by the language spec. The warning advises users to use equality tests (== and !=) instead. (Contributed by Serhiy Storchaka in bpo-34850.)

https://docs.python.org/3.8/whatsnew/3.8.html#changes-in-python-behavior