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 James.Lu
Recipients James.Lu, numerodix
Date 2013-10-20.18:27:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382293638.82.0.156697403885.issue19318@psf.upfronthosting.co.za>
In-reply-to
Content
You would have to do this:
for i in range(1,10):
    broke = True 
    for x in range(2,5):
        break
    else:
        broke = False
    if broke:
       break
to break twice, and you can't break only once!
History
Date User Action Args
2013-10-20 18:27:18James.Lusetrecipients: + James.Lu, numerodix
2013-10-20 18:27:18James.Lusetmessageid: <1382293638.82.0.156697403885.issue19318@psf.upfronthosting.co.za>
2013-10-20 18:27:18James.Lulinkissue19318 messages
2013-10-20 18:27:18James.Lucreate