Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed3.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.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.06; 'notice,': 0.07; 'http': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; 'def': 0.12; 'jan': 0.12; 'assume': 0.14; '10:05': 0.16; 'created.': 0.16; 'exist.': 0.16; 'issue?': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'reproduce': 0.16; 'retrieving': 0.16; 'script,': 0.16; 'wrote:': 0.18; 'variable': 0.18; 'solution.': 0.20; 'header:User-Agent:1': 0.23; 'instance,': 0.24; 'pointer': 0.24; "haven't": 0.24; 'question': 0.24; 'script': 0.25; 'somewhere': 0.26; 'header:X-Complaints- To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'asked': 0.31; 'code': 0.31; 'aims': 0.31; 'gary': 0.31; 'probably': 0.32; 'figure': 0.32; 'proceed': 0.33; 'trouble': 0.34; 'skip:_ 10': 0.34; "can't": 0.35; 'problem.': 0.35; 'but': 0.35; 'method': 0.36; 'similar': 0.36; 'url:org': 0.36; 'effort': 0.37; 'project': 0.37; 'being': 0.38; 'implement': 0.38; 'minimum': 0.38; 'follows:': 0.38; 'needed': 0.38; 'to:addr:python-list': 0.38; 'issue': 0.38; 'pm,': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'called': 0.40; 'how': 0.40; 'even': 0.60; 'is.': 0.60; 'mentioned': 0.61; 'received:173': 0.61; 'show': 0.63; 'email,': 0.69; 'fact,': 0.69; 'repeat': 0.74; 'yourself': 0.78; 'actually,': 0.84; 'received:fios.verizon.net': 0.84; 'gladly': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Python Script Date: Thu, 12 Dec 2013 13:55:29 -0500 References: <89929063-4c26-4e97-8f28-c53f1c538d1d@googlegroups.com> <52AA01EB.3040807@islandtraining.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Gmane-NNTP-Posting-Host: pool-173-75-254-207.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 In-Reply-To: <52AA01EB.3040807@islandtraining.com> 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: 44 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1386874547 news.xs4all.nl 2939 [2001:888:2000:d::a6]:59489 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:61740 On 12/12/2013 1:35 PM, Gary Herron wrote: > On 12/12/2013 10:05 AM, Amimo Benja wrote: >> I have an issue with a Python script that I will show as follows: >> http://codepad.org/G8Z2ConI >> >> Assume that you have three (well defined) classes: AirBase and VmNet, >> . VmNet has got a method that is called recursively each time an HTTP >> response is received. The variable recordTuple needs to be built >> independently for each instance of VmNet that is created. However, the= >> mentioned variable is being overwritten across every instance, so if >> you try to get it from vmnet_instance_y, you would get exactly the >> same than retrieving it from vmnet_instance_x. >> >> =E2=80=A2 What is the code issue? I need to use this script in a proje= ct and I >> don't know how to proceed. >> >> Actually, the script aims to follow the principle don't repeat >> yourself (DRY). As you may notice, VmNet and AirBase does not have def= >> __init__(self), so self.recordTupleBase does not probably exist. >> Additionally, many other subclasses, similar to VmNet, can implement >> the recursive method using that recordTupleBase. >> >> * I will gladly appreciate any help thanks.... > > You haven't actually asked a question here. You say you don't know how= > to proceed with "a project", but we don't know what that project is. I= n > fact, I can't even figure out if your trouble is with the script, or > with using the script in this unknown project. > > Also, if you repost, please include the script in the email, not as a > pointer to somewhere else. And reduce the script to the minimum needed to reproduce the problem.=20 The effort to do that may reveal the solution. --=20 Terry Jan Reedy