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 jpotelle
Recipients docs@python, jpotelle
Date 2015-01-02.22:13:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1420236822.81.0.553151868836.issue23153@psf.upfronthosting.co.za>
In-reply-to
Content
From v3.4 Tutorial section 5.7

It is possible to assign the result of a comparison or other Boolean expression to a variable. For example,
>>> string1, string2, string3 = '', 'Trondheim', 'Hammer Dance'
>>> string1 or string2 or string3
'Trondheim'
>>> bool(string1 or string2 or string3)
True

In most languages a Boolean clause (comparison) returns a Boolean or it's equivalent, not the last argument evaluated.  Please add a reference to bool function (or some better? method) in this section for clarification.
History
Date User Action Args
2015-01-02 22:13:42jpotellesetrecipients: + jpotelle, docs@python
2015-01-02 22:13:42jpotellesetmessageid: <1420236822.81.0.553151868836.issue23153@psf.upfronthosting.co.za>
2015-01-02 22:13:42jpotellelinkissue23153 messages
2015-01-02 22:13:42jpotellecreate