Re: Is multiple inheritance with abstract model classes ok?

2011-06-22 Thread Kevin Renskers
Perfectly fine! -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/6Vp_0w_sz_cJ. To post to this group, send email to django-users@googlegroups.com. To

Is multiple inheritance with abstract model classes ok?

2011-06-20 Thread br
If I have three different abstract model base classes . . . I'd like to use them in multiple inheritance, sort of like Mixins. Any problems with this? E.g., class TaggableBase(models.Model): . . . class Meta: abstract = True class TimeStampedBase(models.Model): . . . class