[Tutor] How do you share a method (function) among several objects?

2005-02-27 Thread Xif
und so far is to put that function in a module, and have all objects import and use it. But I doubt that's a good use-case for modules; writing and importing a module that contains just a single function seems like an abuse. Thanks, Xif ___ Tutor mail

Re: [Tutor] Re: How do you share a method (function) among several objects?

2005-02-27 Thread Xif
Javier Ruere wrote: Xif wrote: Hello There are several different objects. However, they all share the same function. Since they are not the same or similar, it's not logical to use a common superclass. So I'm asking, what's a good way to allow those objects to share that fun

Re: [Tutor] Re: How do you share a method (function) among several objects?

2005-02-27 Thread Xif
Ok, so keeping getCells() as an external function makes sense. But where exactly do you recommend I'd put it? In a seperate module, like I currently do, even though it's going to be the only piece of code contained inside that module? Xif Pierre Barbier de Reuille wrote: Well, for me