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 Segebre
Recipients Segebre
Date 2018-04-26.07:02:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1524726127.25.0.682650639539.issue33364@psf.upfronthosting.co.za>
In-reply-to
Content
The following code generates False when it should generate true:

True == False < 20

Either way the order of operation is taken should result in True but the answer still results in False. To further confirm this issue I did a simple test in which we would group the operations, the test uses print statements to visualize results. The short following code represents the above conditional and the two order of operations possibilities.

print(True == False < 20);
print((True == False) < 20);
print(True == (False < 20));

This yields the following output:

False
True
True

Proving the bug. To explain even further, the code shall be interpreted in either of the following two ways:
1. True == False < 20
   False < 20
   True

2. True == False < 20
   True == True
   True

In either case the result is True, yet python yields False.
History
Date User Action Args
2018-04-26 07:02:07Segebresetrecipients: + Segebre
2018-04-26 07:02:07Segebresetmessageid: <1524726127.25.0.682650639539.issue33364@psf.upfronthosting.co.za>
2018-04-26 07:02:07Segebrelinkissue33364 messages
2018-04-26 07:02:06Segebrecreate