Re: Inheritance: getting subclasses' objects

2008-06-12 Thread Karen Tracey
On Thu, Jun 12, 2008 at 10:46 AM, Stephan Walter <[EMAIL PROTECTED]> wrote: > > On 2008-06-12 14:32, Karen Tracey wrote: > > This class isn't > > going to ever be used in isolation, so abstract base classes are what > you're > > after. > > > In your case it sounds like you do want the base model t

Re: Inheritance: getting subclasses' objects

2008-06-12 Thread Stephan Walter
On 2008-06-12 14:32, Karen Tracey wrote: > This class isn't > going to ever be used in isolation, so abstract base classes are what you're > after. > In your case it sounds like you do want the base model to have its own > database table (so you can write File.objects.all()), so it is not a class

Re: Inheritance: getting subclasses' objects

2008-06-12 Thread Karen Tracey
On Thu, Jun 12, 2008 at 5:23 AM, Stephan Walter <[EMAIL PROTECTED]> wrote: > > Hi, > > I've read several descriptions (on the website and the mailinglist) on > how inheritance once worked, works now, should work, or does not work, > and I'm confused... > At this point since it's been (re-)impleme