diff options
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/contenttypes/generic.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/django/contrib/contenttypes/generic.py b/django/contrib/contenttypes/generic.py deleted file mode 100644 index 19622d33d8..0000000000 --- a/django/contrib/contenttypes/generic.py +++ /dev/null @@ -1,21 +0,0 @@ -from __future__ import unicode_literals - -import warnings - -from django.utils.deprecation import RemovedInDjango19Warning - -warnings.warn( - ('django.contrib.contenttypes.generic is deprecated and will be removed in ' - 'Django 1.9. Its contents have been moved to the fields, forms, and admin ' - 'submodules of django.contrib.contenttypes.'), RemovedInDjango19Warning, stacklevel=2 -) - -from django.contrib.contenttypes.admin import ( # NOQA - GenericInlineModelAdmin, GenericStackedInline, GenericTabularInline -) -from django.contrib.contenttypes.fields import ( # NOQA - GenericForeignKey, GenericRelation -) -from django.contrib.contenttypes.forms import ( # NOQA - BaseGenericInlineFormSet, generic_inlineformset_factory -) |
