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 terry.reedy
Recipients docs@python, jayanthkoushik, terry.reedy
Date 2014-04-18.20:55:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397854512.7.0.475973864643.issue21232@psf.upfronthosting.co.za>
In-reply-to
Content
In 2.x, 1 is guaranteed to be true, in that sense that
  if 1: print 'true'
is guaranteed to print 'true', while True is not necessarily true.
>>> True = 0
>>> if True: print 'yes'

>>>
So 2.x docs should not be changed.
History
Date User Action Args
2014-04-18 20:55:12terry.reedysetrecipients: + terry.reedy, docs@python, jayanthkoushik
2014-04-18 20:55:12terry.reedysetmessageid: <1397854512.7.0.475973864643.issue21232@psf.upfronthosting.co.za>
2014-04-18 20:55:12terry.reedylinkissue21232 messages
2014-04-18 20:55:12terry.reedycreate