﻿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
1179	[magic-removal] Models not in INSTALLED_APPS should raise ImportError	Adrian Holovaty	Adrian Holovaty	"In trunk, if you try to import a model that isn't in {{{INSTALLED_APPS}}}, Django will raise {{{ImportError}}}. This lets you do the following:

{{{
try:
    from django.models.foo import bar
except ImportError:
    bar = None

# ...

if bar is not None:
    bar_objects = bar.get_list()
else:
    bar_objects = []
}}}

The magic-removal branch doesn't yet have this feature."	defect	closed	Metasystem	magic-removal	normal	fixed			Unreviewed	0	0	0	0	0	0
