RE: [Zope] Product inhetitance question (similar question)

2000-08-18 Thread NABETH Thierry
Title: RE: [Zope] Product inhetitance question (similar question) And what happen if the Class A is in a package PA. Clabb B is in a package PB. How do you access the namespace of PA from PB ? When I have tried, the inherited methods from A where not visible from B, and I

RE: [Zope] Product inhetitance question (similar question)

2000-08-18 Thread Dieter Maurer
NABETH Thierry writes: And what happen if the Class A is in a package PA. Clabb B is in a package PB. How do you access the namespace of PA from PB ? from PA import A, . whatever you need class B(A): When I have tried, the inherited methods from A where not visible from B,

[Zope] Product inhetitance question

2000-08-17 Thread Daniel Rusch
Hey all, Say I have a fully functional (and more importantly, working) Product will call A. I want to extend this Product's capabilities so I wish to derive another class from it, call it B. No problem, class B(A): . The question is, (I think the answer is no) is there a way to

Re: [Zope] Product inhetitance question

2000-08-17 Thread Andy McKay
for the People - Original Message - From: "Daniel Rusch" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 17, 2000 8:42 AM Subject: [Zope] Product inhetitance question Hey all, Say I have a fully functional (and more importantly, working) Product will call A. I want

Re: [Zope] Product inhetitance question

2000-08-17 Thread Andy McKay
- Original Message - From: "Andy McKay" [EMAIL PROTECTED] To: "Daniel Rusch" [EMAIL PROTECTED] Sent: Thursday, August 17, 2000 11:21 AM Subject: Re: [Zope] Product inhetitance question Ah... ok sorry you are right, stuff outside the class doesnt get in

Re: [Zope] Product inhetitance question

2000-08-17 Thread Daniel Rusch
1:36 AM Subject: Re: [Zope] Product inhetitance question Great minds think a like or fools never differ. I tried this to but I get an error: TypeError: bad operand type(s) for + Dan Andy McKay wrote: I just had the exact same problem and I solved this mor