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 woo yoo
Recipients docs@python, woo yoo
Date 2016-12-15.03:24:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481772295.45.0.836170310477.issue28976@psf.upfronthosting.co.za>
In-reply-to
Content
The paragraph that describes the precedence of semicolon encounters a minor error, which said :
"Also note that the semicolon binds tighter than the colon in this context, so that in the following example, either all or none of the print() calls are executed:
if x < y < z: print(x); print(y); print(z)" 
However,the series of print function calls could execute partly if the previous ones are legal.
History
Date User Action Args
2016-12-15 03:24:55woo yoosetrecipients: + woo yoo, docs@python
2016-12-15 03:24:55woo yoosetmessageid: <1481772295.45.0.836170310477.issue28976@psf.upfronthosting.co.za>
2016-12-15 03:24:55woo yoolinkissue28976 messages
2016-12-15 03:24:54woo yoocreate