Don't use "is" with a literal to test for equality
authorJeremy Stanley <fungi@yuggoth.org>
Tue, 2 Jun 2020 14:10:49 +0000 (14:10 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Tue, 2 Jun 2020 14:10:49 +0000 (14:10 +0000)
Solve a SyntaxWarning under Python 3.8 and later for use of the "is"
identity operator when comparing literals, by replacing with the
"==" equality operator.


No differences found