From f3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 19 Nov 2016 21:54:19 +0100 Subject: Refs #23919 -- Removed python_2_unicode_compatible decorator usage --- tests/admin_filters/models.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'tests/admin_filters') diff --git a/tests/admin_filters/models.py b/tests/admin_filters/models.py index f508aa1f9b..d9ce5c7cfd 100644 --- a/tests/admin_filters/models.py +++ b/tests/admin_filters/models.py @@ -4,10 +4,8 @@ from django.contrib.contenttypes.fields import ( ) from django.contrib.contenttypes.models import ContentType from django.db import models -from django.utils.encoding import python_2_unicode_compatible -@python_2_unicode_compatible class Book(models.Model): title = models.CharField(max_length=50) year = models.PositiveIntegerField(null=True, blank=True) @@ -39,7 +37,6 @@ class Book(models.Model): return self.title -@python_2_unicode_compatible class Department(models.Model): code = models.CharField(max_length=4, unique=True) description = models.CharField(max_length=50, blank=True, null=True) @@ -48,7 +45,6 @@ class Department(models.Model): return self.description -@python_2_unicode_compatible class Employee(models.Model): department = models.ForeignKey(Department, models.CASCADE, to_field="code") name = models.CharField(max_length=100) @@ -57,7 +53,6 @@ class Employee(models.Model): return self.name -@python_2_unicode_compatible class TaggedItem(models.Model): tag = models.SlugField() content_type = models.ForeignKey(ContentType, models.CASCADE, related_name='tagged_items') @@ -68,7 +63,6 @@ class TaggedItem(models.Model): return self.tag -@python_2_unicode_compatible class Bookmark(models.Model): url = models.URLField() tags = GenericRelation(TaggedItem) -- cgit v1.3