Access from one class to methode of other class

bruno modulix onurb at xiludom.gro
Thu May 26 11:56:36 EDT 2005


VK wrote:
>> I don't know if your're actually calling the classes '1' and '2', but
>> that's a really bad idea!
>>
>>
>>> class 2:
>>>   def ins(self)
>>>       d.entry.insert(variable)
>>
>>
>>
>> This is probably where you're getting the NameError. d is not defined,
>> so calling d.entry will generate an error.
>>
> 
> What is d = 1() in my example then?

a global variable.

> And how do I solve this problem?

passing d to the instance of 2 *could* be a solution.

-- 
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in 'onurb at xiludom.gro'.split('@')])"



More information about the Python-list mailing list