﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
6741	Incomplete documentation for model-inheritance	Arnaud Rebts	nobody	"If you are using multi-table inheritance, and you want to override the save() method of a base class, you have to specify the optional arguments and pass them to the ""real"" save() method, as they are used when saving an inherited object.

def save(self, raw=False, cls=None):
        do_something()
        super(Blog, self).save(raw, cls) # Call the ""real"" save() method. (don't forget to pass the extra-arguments)
        do_something_else()
"		closed	Documentation	queryset-refactor		wontfix	save model-api	arnaud.rebts@…	Accepted	1	0	0	1	0	0
