Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #19260

Re: while True or while 1

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <d@davea.name>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.050
X-Spam-Evidence '*H*': 0.90; '*S*': 0.00; 'subject:while': 0.07; 'python': 0.08; 'cheers!': 0.09; 'am,': 0.12; 'cc:addr:python- list': 0.15; 'alex23': 0.16; 'reached:': 0.16; 'wrote:': 0.16; 'jan': 0.19; 'cc:no real name:2**0': 0.21; 'header:In-Reply-To:1': 0.22; 'literal': 0.23; 'string': 0.24; 'cc:2**0': 0.25; 'code': 0.25; 'suggestion': 0.25; 'pm,': 0.26; '"the': 0.26; 'cc:addr:python.org': 0.29; "i've": 0.31; 'list': 0.32; 'header :User-Agent:1': 0.33; 'too': 0.34; 'typical': 0.34; 'something': 0.35; 'similar': 0.36; 'but': 0.37; "there's": 0.37; 'portion': 0.38; 'think': 0.38; 'received:192': 0.38; 'should': 0.38; 'mailing': 0.38; 'why': 0.39; 'subject:: ': 0.39; 'ever': 0.64; 'believe': 0.65; 'header:Reply-To:1': 0.71; 'reply-to:no real name:2**0': 0.72; 'encountered': 0.73; '10:55': 0.84; 'sommers': 0.84; 'temperature': 0.93
Date Mon, 23 Jan 2012 08:02:30 -0500
From Dave Angel <d@davea.name>
User-Agent Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.24) Gecko/20111109 Thunderbird/3.1.16
MIME-Version 1.0
To alex23 <wuwei23@gmail.com>
Subject Re: while True or while 1
References <4F1AC1D4.2080402@gmail.com> <mailman.4909.1327157944.27778.python-list@python.org> <pL-dnUjq2eH3t4bSnZ2dnUVZ5vudnZ2d@giganews.com> <mailman.4914.1327184007.27778.python-list@python.org> <4f1b9dc4$0$29987$c3e8da3$5496439d@news.astraweb.com> <mailman.4925.1327248367.27778.python-list@python.org> <70a86eec-8fb5-477b-9797-e1f8af373b8e@nf9g2000pbc.googlegroups.com>
In-Reply-To <70a86eec-8fb5-477b-9797-e1f8af373b8e@nf9g2000pbc.googlegroups.com>
Content-Type text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding 7bit
X-Provags-ID V02:K0:e1xiXLrW2MkQvysSLfSo/5z9boQDuL2f0XgZYEW1Dvi aaFfz99BDN0fOicCFWuWn3z0bw+O7A+6UzGXkBffzgVNJmdv+e PHG4jqS+2ve0/WI2jWc1qjxafJJMfp2oSAEXYhPJ4rsC5pH493 4vN1ouvlOBbYNmXsbreg4X2XO/e3s/v2E6OXSAmyTu9k/F1aqB ISjGgiTMHi2HzDEMbsZ/IHorQu/o2PDsbD66lFx+dY7rzSg2Aq N7Cbuc1ZrkvPnenUXHkmrkP4wrc7VQwaRUiNq2p6Re3n7vL1Af SRyR5GZBeZBV9/Qa4o6/z0Po69bUPJLM1TPdfnGcHVvP6neJQ= =
Cc python-list@python.org
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
Precedence list
Reply-To d@davea.name
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.4962.1327323756.27778.python-list@python.org> (permalink)
Lines 21
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1327323756 news.xs4all.nl 6844 [2001:888:2000:d::a6]:39593
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:19260

Show key headers only | View raw


On 01/22/2012 10:55 PM, alex23 wrote:
> On Jan 23, 2:05 am, Dan Sommers<d...@tombstonezero.net>  wrote:
>> As per a now-ancient suggestion on this mailing list (I believe it was by
>> Tim Peters), I've also been known to use a non-empty, literal Python
>> string as a self-documenting, forever-True value in the typical loop-and-a-
>> half cnstruct:
>>
>>      while "the temperature is too big":
> I don't think I've ever encountered this before, but I like it :)
> Cheers!
I do something similar when there's a portion of code that should never 
be reached:

assert("reason why I cannot get here")



-- 

DaveA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: while True or while 1 Chris Angelico <rosuav@gmail.com> - 2012-01-22 01:59 +1100
  Re: while True or while 1 Erik Max Francis <max@alcyone.com> - 2012-01-21 13:13 -0800
    Re: while True or while 1 Chris Angelico <rosuav@gmail.com> - 2012-01-22 09:13 +1100
      Re: while True or while 1 Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-01-22 05:25 +0000
        Re: while True or while 1 Dan Sommers <dan@tombstonezero.net> - 2012-01-22 16:05 +0000
          Re: while True or while 1 alex23 <wuwei23@gmail.com> - 2012-01-22 19:55 -0800
            Re: while True or while 1 Dave Angel <d@davea.name> - 2012-01-23 08:02 -0500
              Re: while True or while 1 Hrvoje Niksic <hniksic@xemacs.org> - 2012-01-23 14:28 +0100
                Re: while True or while 1 Dave Angel <d@davea.name> - 2012-01-23 13:33 -0500
        Re: while True or while 1 MRAB <python@mrabarnett.plus.com> - 2012-01-22 16:13 +0000
    Re: while True or while 1 Grant Edwards <invalid@invalid.invalid> - 2012-01-23 15:51 +0000
    Re: while True or while 1 Giampaolo Rodolà <g.rodola@gmail.com> - 2012-01-23 17:41 +0100
      Re: while True or while 1 Erik Max Francis <max@alcyone.com> - 2012-01-23 11:12 -0800
        Re: while True or while 1 Giampaolo Rodolà <g.rodola@gmail.com> - 2012-01-23 21:20 +0100
    Re: while True or while 1 Ian Kelly <ian.g.kelly@gmail.com> - 2012-01-23 10:39 -0700
    Re: while True or while 1 Evan Driscoll <edriscoll@wisc.edu> - 2012-01-23 12:05 -0600
    Re: while True or while 1 Andrea Crotti <andrea.crotti.0@gmail.com> - 2012-01-23 20:50 +0000
      Re: while True or while 1 88888 Dihedral <dihedral88888@googlemail.com> - 2012-01-23 14:42 -0800
      Re: while True or while 1 88888 Dihedral <dihedral88888@googlemail.com> - 2012-01-23 14:42 -0800
      Re: while True or while 1 Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-01-24 03:37 +0000

csiph-web