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 abriabrisham
Recipients abriabrisham, docs@python
Date 2021-12-20.21:40:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1640036415.84.0.642236442318.issue46139@roundup.psfhosted.org>
In-reply-to
Content
A short circuit operator. 

x OR y - if x is false, then y, else x (1). 

(1) This is a short-circuit operator, so it only evaluates the second argument if the first one is false.

The first argument is 'if'
The second argument is 'then'
The third argument is 'else'

Move to the second argument if the first is false. 
Evaluate the first argument 'if x is false' - look at the second argument if the first argument is false - 'then y'.
History
Date User Action Args
2021-12-20 21:40:15abriabrishamsetrecipients: + abriabrisham, docs@python
2021-12-20 21:40:15abriabrishamsetmessageid: <1640036415.84.0.642236442318.issue46139@roundup.psfhosted.org>
2021-12-20 21:40:15abriabrishamlinkissue46139 messages
2021-12-20 21:40:15abriabrishamcreate