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


Groups > comp.lang.python > #61740

Re: Python Script

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 <python-python-list@m.gmane.org>
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 <tjreedy@udel.edu>
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 <python-list.python.org>
List-Unsubscribe <https://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 <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.4011.1386874547.18130.python-list@python.org> (permalink)
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

Show key headers only | View raw


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.
>>
>> • 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__(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.  In
> 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. 
The effort to do that may reveal the solution.

-- 
Terry Jan Reedy

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Python Script Amimo Benja <amimobenja08@gmail.com> - 2013-12-12 10:05 -0800
  Re: Python Script Gary Herron <gary.herron@islandtraining.com> - 2013-12-12 10:35 -0800
    Re: Python Script Amimo Benja <amimobenja08@gmail.com> - 2013-12-12 22:21 -0800
      Re: Python Script Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-13 08:38 +0000
  Re: Python Script Terry Reedy <tjreedy@udel.edu> - 2013-12-12 13:55 -0500
    Re: Python Script Amimo Benja <amimobenja08@gmail.com> - 2013-12-12 22:21 -0800
  Re: Python Script MRAB <python@mrabarnett.plus.com> - 2013-12-12 18:59 +0000
    Re: Python Script Amimo Benja <amimobenja08@gmail.com> - 2013-12-12 22:26 -0800

csiph-web