Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #49123
| Path | csiph.com!usenet.pasdenom.info!news.etla.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <rosuav@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.182 |
| X-Spam-Level | * |
| X-Spam-Evidence | '*H*': 0.76; '*S*': 0.13; 'subject:PEP': 0.07; 'imho.': 0.09; "'break'": 0.16; '(note:': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.18; 'pointed': 0.19; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; '25,': 0.31; 'continues': 0.31; 'received:google.com': 0.35; 'earth': 0.36; 'should': 0.36; 'being': 0.38; 'to:addr:python- list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'subject:? ': 0.60; "you've": 0.63; 'subject:this': 0.83; 'rusi': 0.91; 'why?': 0.91; 'taught': 0.96; '2013': 0.98 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=eBivUx32zGOhcnq2FJHY31Jim31/gud4y1AK95DeI2U=; b=bCwSk7bHLaaK4RTIJ7hXb3/qTx4o+usZ5wWQxJ05uBRJXGt0hT70sqFN0vgtGslvHP KeI0dI5PB0iO16Krv4GXsoV478FioawJx/378uHwVFYp730GY12O+NUVQLEwEliFPJnJ 11+/jARZZld0BkV/DsIrDh1tfoUOc9s0Dx+Mp9ub5XbV5dUhsjR8JMttJzGvfb+/CyWD D3xL/iVXtRI3Hh/YEnIzBMQcOK3GhA7YCsA5d678qbFvbp6GpXNkdTN53FHqQephIL+i yDAJmtA30R/9MluOEkwKvY03FZrKzCRp8iSffhp8lNY7RbCS0zsjiX3vIHulSkw1MS+m zJPQ== |
| MIME-Version | 1.0 |
| X-Received | by 10.52.93.106 with SMTP id ct10mr11015739vdb.83.1372132486756; Mon, 24 Jun 2013 20:54:46 -0700 (PDT) |
| In-Reply-To | <8f813b85-9a4e-4612-82b1-dd58f9bfd497@googlegroups.com> |
| References | <8D03F2B8CF0E7BE-1864-1796B@webmail-m103.sysops.aol.com> <mailman.3773.1372110329.3114.python-list@python.org> <8f813b85-9a4e-4612-82b1-dd58f9bfd497@googlegroups.com> |
| Date | Tue, 25 Jun 2013 13:54:46 +1000 |
| Subject | Re: Is this PEP-able? fwhile |
| From | Chris Angelico <rosuav@gmail.com> |
| To | python-list@python.org |
| Content-Type | text/plain; charset=ISO-8859-1 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3794.1372132495.3114.python-list@python.org> (permalink) |
| Lines | 17 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1372132495 news.xs4all.nl 15984 [2001:888:2000:d::a6]:57290 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:49123 |
Show key headers only | View raw
On Tue, Jun 25, 2013 at 12:01 PM, rusi <rustompmody@gmail.com> wrote: > On Tuesday, June 25, 2013 3:08:57 AM UTC+5:30, Chris Angelico wrote: >> On Tue, Jun 25, 2013 at 5:52 AM, <> wrote: >> >> > (NOTE: Many people are being taught to avoid 'break' and 'continue' at all >> > costs... >> >> Why? Why on earth should break/continue be avoided? > > Because breaks and continues are just goto-in-disguise? > > [Well so is while and if and function-call and... Who is to say that?] And that's still not a reason imho. You've just pointed out that they're all control-flow. :) ChrisA
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: Is this PEP-able? fwhile Chris Angelico <rosuav@gmail.com> - 2013-06-25 07:38 +1000
Re: Is this PEP-able? fwhile rusi <rustompmody@gmail.com> - 2013-06-24 19:01 -0700
Re: Is this PEP-able? fwhile Chris Angelico <rosuav@gmail.com> - 2013-06-25 13:54 +1000
Re: Is this PEP-able? fwhile Benjamin Kaplan <benjamin.kaplan@case.edu> - 2013-06-24 21:20 -0700
Re: Is this PEP-able? fwhile Chris Angelico <rosuav@gmail.com> - 2013-06-25 17:21 +1000
Re: Is this PEP-able? fwhile Ian Kelly <ian.g.kelly@gmail.com> - 2013-06-25 10:00 -0600
Re: Is this PEP-able? fwhile rusi <rustompmody@gmail.com> - 2013-06-25 09:19 -0700
Re: Is this PEP-able? fwhile Neil Cerutti <neilc@norwich.edu> - 2013-06-26 13:09 +0000
Re: Is this PEP-able? fwhile Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2013-06-25 20:40 -0400
Re: Is this PEP-able? fwhile jfharden@gmail.com - 2013-06-26 03:00 -0700
Re: Is this PEP-able? fwhile Jerry Peters <jerry@example.invalid> - 2013-06-26 19:56 +0000
csiph-web