﻿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
2834	Indents in base.py comments breaks epydoc doc generation.		Adrian Holovaty	"Running the [http://epydoc.sourceforge.net/ Epydoc] document generator on a model returns the following error message:
{{{
File: c:\dev\python-2.4.2\lib\site-packages\django\db\models\base.py, line
243, in django.db.models.base.Model._collect_sub_objects
Lines 246, 247: Improper paragraph indentation
}}}

Looking at those lines, we find:
{{{
    def _collect_sub_objects(self, seen_objs):
        """"""
        Recursively populates seen_objs with all objects related to this object.
        When done, seen_objs will be in the format:
            {model_class: {pk_val: obj, pk_val: obj, ...},
             model_class: {pk_val: obj, pk_val: obj, ...}, ...}
        """"""
}}}

The problem appears to be with the extra tabs in the last two lines of that comment. I've fixed it in my local version, but someone may want to fix the version in the repository so it doesn't break for others."	defect	closed	Core (Other)	dev	minor	wontfix			Unreviewed	0	0	0	0	0	0
