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


Groups > comp.lang.python > #19273

Re: while True or while 1

Path csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.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.005
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'subject:while': 0.07; 'python': 0.08; 'assert': 0.09; 'false,': 0.09; 'am,': 0.12; 'cc:addr:python-list': 0.15; 'here"?': 0.16; 'reached:': 0.16; 'to:addr:xemacs.org': 0.16; 'typo.': 0.16; 'wrote:': 0.16; 'cc:no real name:2**0': 0.21; 'header:In-Reply-To:1': 0.22; 'sfxlen:0': 0.23; "shouldn't": 0.23; 'cc:2**0': 0.25; 'code': 0.25; 'writes:': 0.25; 'cc:addr:python.org': 0.29; 'header:User-Agent:1': 0.33; 'there': 0.33; 'something': 0.35; 'similar': 0.36; "there's": 0.37; 'portion': 0.38; 'received:192': 0.38; 'should': 0.38; 'why': 0.39; 'subject:: ': 0.39; 'header:Reply-To:1': 0.71; 'reply-to:no real name:2**0': 0.72
Date Mon, 23 Jan 2012 13:33:42 -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 Hrvoje Niksic <hniksic@xemacs.org>
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> <mailman.4962.1327323756.27778.python-list@python.org> <87lioyk0pi.fsf@xemacs.org>
In-Reply-To <87lioyk0pi.fsf@xemacs.org>
Content-Type text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding 7bit
X-Provags-ID V02:K0:/QTNJKxJSBI+fqtoTn/awduD4rnMaCsImhGOwoeoCVr 3DmaN3tA+KiVYZfod/4019gLMJdnPo6X967XZAwM4We3MvQRnH 2miOdIajGznwg0b0HlP6ZfLMo+/iN+BegmF96wRmqUHamkEmbr 86iBDeK3nbrOI2aDJpypSSsOi2hSM8EH3YbVjmu+2Nn+l5c9kO jPvThah+pVpr1zgo83mUhQUIR/WBwInluTHUO+M3g23D71xhR+ kY80Dfcitq9aTTWdZjvy/62ILs5kE/ZsNKnCyL/W3IA/c24/vL RvF8FhrEvmaMjfxCLinIeMUZ7Xwx+ZYciAbhHZTxmOXA1knUql rTqN9u8H2qYzrfTzfMGs=
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.4970.1327343648.27778.python-list@python.org> (permalink)
Lines 17
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1327343648 news.xs4all.nl 6939 [2001:888:2000:d::a6]:57571
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:19273

Show key headers only | View raw


On 01/23/2012 08:28 AM, Hrvoje Niksic wrote:
> Dave Angel<d@davea.name>  writes:
>
>> I do something similar when there's a portion of code that should
>> never be reached:
>>
>> assert("reason why I cannot get here")
> Shouldn't that be assert False, "reason why I cannot get here"?
You caught me in a typo.  If it's in python there should be a not there, 
and if it's in C, a bang.



-- 

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