#8884: Typo in http://docs.djangoproject.com/en/dev/topics/db/models/#automatic- primary-key-fields ---------------------------+------------------------------------------------ Reporter: schnuffle | Owner: nobody Status: new | Milestone: Component: Documentation | Version: 1.0 Keywords: Typo | Stage: Unreviewed Has_patch: 0 | ---------------------------+------------------------------------------------ Multiple inheritance¶
Just as with Python's subclassing, it's possible for a Django model to inherit from multiple parent models. Keep in mind that normal Python name resolution rules apply. The first base class that a particular name appears in (e.g. Meta) will be the one that is used; for example, '''his''' means that if multiple parents contain a Meta class, only the first one is going to be used, and all others will be ignored. -- Ticket URL: <http://code.djangoproject.com/ticket/8884> Django Code <http://code.djangoproject.com/> The web framework for perfectionists with deadlines --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
