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!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.010 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:Python': 0.06; 'notice,': 0.07; 'http': 0.09; 'received:67.192': 0.09; 'received:67.192.241': 0.09; 'received:dfw.emailsrvr.com': 0.09; 'python': 0.11; 'def': 0.12; 'assume': 0.14; '10:05': 0.16; 'created.': 0.16; 'exist.': 0.16; 'issue?': 0.16; 'retrieving': 0.16; 'script,': 0.16; 'wrote:': 0.18; 'variable': 0.18; 'header :User-Agent:1': 0.23; 'instance,': 0.24; 'pointer': 0.24; 'received:emailsrvr.com': 0.24; "haven't": 0.24; 'question': 0.24; 'script': 0.25; 'received:(smtp server)': 0.26; 'somewhere': 0.26; '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; 'but': 0.35; 'method': 0.36; 'similar': 0.36; 'url:org': 0.36; 'project': 0.37; 'being': 0.38; 'implement': 0.38; 'follows:': 0.38; 'to:addr:python-list': 0.38; 'issue': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'called': 0.40; 'how': 0.40; 'even': 0.60; 'is.': 0.60; 'mentioned': 0.61; 'show': 0.63; 'charset:windows-1252': 0.65; 'email,': 0.69; 'fact,': 0.69; 'repeat': 0.74; 'yourself': 0.78; 'actually,': 0.84; 'gladly': 0.91 X-Virus-Scanned: OK Date: Thu, 12 Dec 2013 10:35:23 -0800 From: Gary Herron User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Python Script References: <89929063-4c26-4e97-8f28-c53f1c538d1d@googlegroups.com> In-Reply-To: <89929063-4c26-4e97-8f28-c53f1c538d1d@googlegroups.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: quoted-printable 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: 35 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1386873346 news.xs4all.nl 2901 [2001:888:2000:d::a6]:47884 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:61737 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 resp= onse is received. The variable recordTuple needs to be built independentl= y for each instance of VmNet that is created. However, the mentioned vari= able 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. > > =95 What is the code issue? I need to use this script in a project 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__(s= elf), so self.recordTupleBase does not probably exist. Additionally, many= other subclasses, similar to VmNet, can implement the recursive method u= sing that recordTupleBase. > > * I will gladly appreciate any help thanks.... You haven't actually asked a question here. You say you don't know how=20 to proceed with "a project", but we don't know what that project is. In = fact, I can't even figure out if your trouble is with the script, or=20 with using the script in this unknown project. Also, if you repost, please include the script in the email, not as a=20 pointer to somewhere else. Gary Herron