Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.049 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.03; 'subject:code': 0.07; 'lawrence': 0.09; 'cc:addr:python-list': 0.11; '23,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'memory': 0.22; 'cc:addr:python.org': 0.22; 'mon,': 0.24; 'cc:2**0': 0.24; 'header :In-Reply-To:1': 0.27; 'dec': 0.30; 'message-id:@mail.gmail.com': 0.30; 'something': 0.35; 'received:google.com': 0.35; 'pm,': 0.38; 'new': 0.61; '1st': 0.74; 'day': 0.76; 'to:none': 0.92; '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:cc :content-type; bh=bR5thx5HV/xJ+HgQWb5GG8s+jDOMgySb0tgLA0UA9HM=; b=VUOfE9CYoSVm2Gm8yeSUc4VznA5K6PwEqaeG+YJad0xgWW6S2XmjToVfDFtuEhubQ3 BWDmd3a0IKeDdNkcwsdPevPKDlGynafwN1YxdR+ZuyX2B6tIVdob+rjs3cTHf+eJmr+k FMfr1tQUpRFZzC7dksdvkrw1sWws3y/pIccxlUBpBQY4aC7hxLQWsweZEPf8BxcK9CJ0 Snsca6R5RatGpi4yXM5bwndknhY2ZtLA3MYT3GcElsssohLaKBhpKYBY0vwpD60KAvYb ZFNvZVaM5RUqMXUUQxz4NYv6uOZ2z3G1q5y/sek4YKdbgbaYdTv+z34CzxKMYxPsY+tt 0bBg== MIME-Version: 1.0 X-Received: by 10.68.230.137 with SMTP id sy9mr23329340pbc.126.1387771169675; Sun, 22 Dec 2013 19:59:29 -0800 (PST) In-Reply-To: References: <20131222221125.GA44179@cskk.homeip.net> Date: Mon, 23 Dec 2013 14:59:29 +1100 Subject: Re: cascading python executions only if return code is 0 From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 9 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1387771173 news.xs4all.nl 2913 [2001:888:2000:d::a6]:57078 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:62590 On Mon, Dec 23, 2013 at 2:54 PM, Mark Lawrence wrote: >> memory.get(1234) > > > You learn something new every day or April 1st come early? memory = {1:"Foo", 12:"Bar", 123:"Quux"} ChrisA