﻿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
36159	Remove the example of the empty import shell customization	Salvo Polizzi	Salvo Polizzi	"The final section of this [https://docs.djangoproject.com/en/dev/howto/custom-shell/#customize-automatic-imports tutorial] currently states:

''If you prefer to not have models automatically imported, create a custom get_namespace() that excludes the super().get_namespace() call:''
{{{
from django.core.management.commands import shell

class Command(shell.Command):
    def get_namespace(self):
        return {}
}}}

----

This section can be replaced with a simpler explanation: 

''To disable automatic importing entirely, use the --no-imports flag.''"	Cleanup/optimization	closed	Documentation	5.2	Normal	fixed			Ready for checkin	1	0	0	0	0	0
