We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a36f152 commit f468b5dCopy full SHA for f468b5d
doc/data/messages/c/comparison-with-itself/bad.py
@@ -0,0 +1,3 @@
1
+def is_an_orange(fruit):
2
+ an_orange = "orange"
3
+ return fruit == fruit # [comparison-with-itself]
doc/data/messages/c/comparison-with-itself/good.py
+ return an_orange == fruit
0 commit comments