This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author blue555
Recipients blue555, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-12-01.06:37:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1606804634.41.0.958530528001.issue42518@roundup.psfhosted.org>
In-reply-to
Content
print (5 + 2 == 7 and 10 <= 1232 and 100 ^ 1000 >= 128) # Incorrect 

  Output: True

This argument should be false but it prints true. This is the logical error vulnerability. Try this code in another language too. You find out they print false because the argument is false but unfortunately Python prints true. Because Python does not understand this.
History
Date User Action Args
2020-12-01 06:37:14blue555setrecipients: + blue555, paul.moore, tim.golden, zach.ware, steve.dower
2020-12-01 06:37:14blue555setmessageid: <1606804634.41.0.958530528001.issue42518@roundup.psfhosted.org>
2020-12-01 06:37:14blue555linkissue42518 messages
2020-12-01 06:37:14blue555create