[Zope] Product inhetitance question (similar question)
Dieter Maurer
dieter@handshake.de
Fri, 18 Aug 2000 21:49:27 +0200 (CEST)
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, and I and to recreate a copie of the method.
> (which is ugly !!!).
Almost unbelievable.
Dieter