I found that a subclass' _pre_save method superceeds it's parent's
and I have a situation where I need it to do something in addition
to what it's parent does.

e.g.

    class One(model):
      def _pre_save: ...something...
    class Two(One):
      def _pre_save:
         ?????
Based on Python docs, I've tried... with no luck:
         One._pre_save
         one._pre_save
         meta.Model.One._pre_save
         Model.One._pre_save

In a subclass' _pre_save method how do I invoke it's parent's
_pre_save method?

Thanks

-- 
Glenn

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to