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 jmsohn.x
Recipients jmsohn.x, lys.nikolaou, pablogsal
Date 2022-02-10.00:55:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1644454512.3.0.572499319459.issue46703@roundup.psfhosted.org>
In-reply-to
Content
In python 3.6.8, 3.7.3, 3.7.4, 3.7.5, 3.7.12, 3.8.8 versions, the output is False as shown below.

Python 3.7.5 (tags/v3.7.5:5c02a39a0b, Oct 15 2019, 00:11:34) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print(True == False == False)
False

However, in the openjdk1.8 version, the output is "true" as shown below. 

public class Test {
	public static void main(String[] args) throws Exception{
		System.out.println(true == false == false);
	}
}

> java Test
true

In my opinion, "True" seems to be correct.
History
Date User Action Args
2022-02-10 00:55:12jmsohn.xsetrecipients: + jmsohn.x, lys.nikolaou, pablogsal
2022-02-10 00:55:12jmsohn.xsetmessageid: <1644454512.3.0.572499319459.issue46703@roundup.psfhosted.org>
2022-02-10 00:55:12jmsohn.xlinkissue46703 messages
2022-02-10 00:55:12jmsohn.xcreate