summaryrefslogtreecommitdiff
path: root/django/core/serializers/python.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-11-19 18:19:41 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-18 09:55:19 +0100
commitd7b9aaa366dd54ecc3142c588162e3adc7c2f7ac (patch)
treec7faf11a6f6c14981a08a621c36e6f736b21dd8b /django/core/serializers/python.py
parent397b3705c5f762b359cdb494f9447c8a60685adf (diff)
downloaddjango-d7b9aaa366dd54ecc3142c588162e3adc7c2f7ac.tar.gz
Refs #23919 -- Removed encoding preambles and future imports
Diffstat (limited to 'django/core/serializers/python.py')
-rw-r--r--django/core/serializers/python.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/core/serializers/python.py b/django/core/serializers/python.py
index 7a61999f15..a0cea14297 100644
--- a/django/core/serializers/python.py
+++ b/django/core/serializers/python.py
@@ -3,8 +3,6 @@ A Python "serializer". Doesn't do much serializing per se -- just converts to
and from basic Python data types (lists, dicts, strings, etc.). Useful as a basis for
other serializers.
"""
-from __future__ import unicode_literals
-
from collections import OrderedDict
from django.apps import apps