Replaced a dict emulating a set with a set.

This commit is contained in:
Aymeric Augustin 2013-06-09 14:31:04 +02:00
parent 6a092f24e0
commit 79ff1aedd5
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class AppCache(object):
# -- Everything below here is only used when populating the cache -- # -- Everything below here is only used when populating the cache --
loaded=False, loaded=False,
handled={}, handled=set(),
postponed=[], postponed=[],
nesting_level=0, nesting_level=0,
_get_models_cache={}, _get_models_cache={},
@ -89,7 +89,7 @@ class AppCache(object):
Loads the app with the provided fully qualified name, and returns the Loads the app with the provided fully qualified name, and returns the
model module. model module.
""" """
self.handled[app_name] = None self.handled.add(app_name)
self.nesting_level += 1 self.nesting_level += 1
app_module = import_module(app_name) app_module = import_module(app_name)
try: try: