On Oct 17, 12:19 pm, Matthew Wilson <[EMAIL PROTECTED]> wrote:
> I started with a module with a bunch of classes that represent database
> tables. A lot of these classes have methods that use other classes
> inside, sort of like this:
>
> class C(object):
> @classmethod
> def
On Fri 17 Oct 2008 04:52:47 PM EDT, Steve Holden wrote:
> Matthew Wilson wrote:
>> I started with a module with a bunch of classes that represent database
>> tables. A lot of these classes have methods that use other classes
>> inside, sort of like this:
>>
>> class C(object):
>> @cla
Matthew Wilson wrote:
> I started with a module with a bunch of classes that represent database
> tables. A lot of these classes have methods that use other classes
> inside, sort of like this:
>
> class C(object):
> @classmethod
> def c1(cls, a):
> return a
>
>
I started with a module with a bunch of classes that represent database
tables. A lot of these classes have methods that use other classes
inside, sort of like this:
class C(object):
@classmethod
def c1(cls, a):
return a
class D(object):
def d1(self, a