summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-10-08 11:56:13 -0400
committerSimon Charette <charette.s@gmail.com>2015-10-12 12:14:27 -0400
commita82e21b0f9ac613db3354d46539cb97c897ea663 (patch)
tree17bee9a4469afb93da7acdbe2952d99aa522d9dd
parent5b980897f2da3c048d88029af554e0fc4be68a8e (diff)
Refs #18012 -- Removed the now unused proxied_children model option.
Thanks to Tim for the review.
-rw-r--r--django/db/models/base.py1
-rw-r--r--django/db/models/options.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/django/db/models/base.py b/django/db/models/base.py
index be1cb48df9..e58e50e818 100644
--- a/django/db/models/base.py
+++ b/django/db/models/base.py
@@ -185,7 +185,6 @@ class ModelBase(type):
raise TypeError("Proxy model '%s' has no non-abstract model base class." % name)
new_class._meta.setup_proxy(base)
new_class._meta.concrete_model = base._meta.concrete_model
- base._meta.concrete_model._meta.proxied_children.append(new_class._meta)
else:
new_class._meta.concrete_model = new_class
diff --git a/django/db/models/options.py b/django/db/models/options.py
index 3d0a42e515..9c69387c96 100644
--- a/django/db/models/options.py
+++ b/django/db/models/options.py
@@ -71,7 +71,6 @@ class Options(object):
def __init__(self, meta, app_label=None):
self._get_fields_cache = {}
- self.proxied_children = []
self.local_fields = []
self.local_many_to_many = []
self.virtual_fields = []