Re: method override inside a module

2007-05-25 Thread Steve Holden
Fabrizio Pollastri wrote: > Hello, > I am trying to override a method of a class defined into an imported > module, but keeping intact the namespace of the imported module. > > For example, let suppose > > import module_X > > and in module_X is defined something like > > class A: >

Re: method override inside a module

2007-05-25 Thread Gabriel Genellina
En Fri, 25 May 2007 06:12:14 -0300, Fabrizio Pollastri <[EMAIL PROTECTED]> escribió: > I am trying to override a method of a class defined into an imported > module, but keeping intact the namespace of the imported module. The last part I don't get completely... > For example, let suppose > >