Path: csiph.com!x330-a1.tempe.blueboxinc.net!feeder1.hal-mli.net!weretis.net!feeder4.news.weretis.net!news.mixmin.net!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.045 X-Spam-Evidence: '*H*': 0.91; '*S*': 0.00; 'executed': 0.09; '~ethan~': 0.09; 'programmer': 0.11; 'this:': 0.11; 'def': 0.13; 'wrote:': 0.14; 'expr': 0.16; 'func():': 0.16; 'furman': 0.16; 'return.': 0.16; 'tue,': 0.20; 'discussion': 0.20; 'code': 0.22; 'header:In-Reply-To:1': 0.22; 'keeps': 0.24; 'subject: -- ': 0.25; "wasn't": 0.25; 'regardless': 0.26; 'object': 0.27; 'function': 0.27; 'yet': 0.30; 'along.': 0.31; 'yesterday': 0.31; 'however,': 0.31; 'to:addr:python-list': 0.32; 'done': 0.32; 'from:charset:iso-8859-1': 0.33; 'lines': 0.34; 'received:192.168.1': 0.34; 'received:192': 0.34; 'post': 0.34; 'there': 0.35; 'question': 0.35; 'point': 0.35; '-0700,': 0.35; 'slow': 0.35; 'doing': 0.36; 'getting': 0.36; 'think': 0.36; 'none': 0.36; 'received:192.168': 0.37; 'should': 0.37; 'received:google.com': 0.38; 'to:addr:python.org': 0.39; 'where': 0.39; 'header:Mime-Version:1': 0.39; 'except': 0.39; 'would': 0.40; "it's": 0.40; 'header:Received:5': 0.40; 'back': 0.61; 'today!': 0.65; 'day': 0.66; 'said:': 0.68; 'received:74.125.83': 0.69; 'stand': 0.71; 'message-id:@localhost.localdomain': 0.74; 'funny': 0.77; 'subjective': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:in-reply-to:references :content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=wq97M41yp0d1b8epJGPeadZ2y73nKFTQeQBK7I0BZ/c=; b=XC/hWjy6jt0wi5xo1+wdRMvKIGRMRA/U6nk4d9jqKejuijB62tVlqBP344zqD71oKg tS/xE/mGj5hCfMjW58mAqhPHkD/+WeL3HqSJWb9L8aR/KcRIWHjaEwJ8VcPyfMuZ7JHU b2gJrXuRBoUGkw4bUhNtlNvoheDhCsO7siQuE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:in-reply-to:references:content-type:date:message-id :mime-version:x-mailer:content-transfer-encoding; b=rZObZj3TjCuJuVl+SJSKmu15mPmGvy6TSrcSQUC3CWTr4ID9AUuldzKnSVnDhiRnh8 zxFsxaACs/pOaSjOfR830pdPmNpQaQhbON+psck7/fWsWjFKIo/O/GJ5Uh2ROlOztfRF RHlMbpVj4hjAC8sEXrA3/4EQDUFq2xqGUOaCk= Subject: Re: Feature suggestion -- return if true From: Westley =?ISO-8859-1?Q?Mart=EDnez?= To: python-list@python.org In-Reply-To: <4DA4DB0F.8040509@stoneleaf.us> References: <8abff237-5ccd-4eb6-85c8-cdc9e87520b7@bl1g2000vbb.googlegroups.com> <87k4eze4dl.fsf@mithlond.arda> <4DA4DB0F.8040509@stoneleaf.us> Content-Type: text/plain; charset="UTF-8" Date: Tue, 12 Apr 2011 16:15:29 -0700 Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 37 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1302650135 news.xs4all.nl 81474 [::ffff:82.94.164.166]:41594 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:3100 On Tue, 2011-04-12 at 16:06 -0700, Ethan Furman wrote: > James Mills wrote: > > Are we done with this discussion yet ? :) > > *sigh* It was a slow day yesterday and I have > > a funny feeling it's going to be the same today! > > > > Regardless of anyone's subjective opinions as to what > > was clear - I still stand by what I said. > > I think I see your point -- the OP said: > --> _temp = expr > --> if _temp: return _temp > > which is where you're getting > --> return _temp or None > > However, most everyone ('cept you, it seems! ;) understood that there > would be more lines of code such that if bool(expr) == False no return > is executed and the function keeps going merrily along. Like this: > --> def func(): > --> var1 = something() > --> var2 = something_else('this') > --> return? var1.hobgle(var2) > --> var3 = last_resort(var1) > --> return var3.wiglat(var2) > > > Looking back at the whole post now, I see nothing there to concretely > make that point except the question mark on the return. > > Hope this helps. > > ~Ethan~ The question mark makes the programmer look like he wasn't sure of what he was doing at the time. "Hmm, should I return this object or not?"