diff options
author | Claude Paroz <claude@2xlibre.net> | 2013-07-29 19:19:04 +0200 |
---|---|---|
committer | Claude Paroz <claude@2xlibre.net> | 2013-07-29 20:28:13 +0200 |
commit | 5c1143910e071c73671424036408c4548742d24f (patch) | |
tree | 20c67bd23a8590657cd28699f17c1a52bda2cebf /django/core/serializers/json.py | |
parent | 402b4a7a20a4f00fce0f01cdc3f5f97967fdb935 (diff) | |
download | django-5c1143910e071c73671424036408c4548742d24f.tar.gz |
Removed most of absolute_import imports
Should be unneeded with Python 2.7 and up.
Added some unicode_literals along the way.
Diffstat (limited to 'django/core/serializers/json.py')
-rw-r--r-- | django/core/serializers/json.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/serializers/json.py b/django/core/serializers/json.py index 64357bf9d5..b07aa3392c 100644 --- a/django/core/serializers/json.py +++ b/django/core/serializers/json.py @@ -4,6 +4,7 @@ Serialize data to/from JSON # Avoid shadowing the standard library json module from __future__ import absolute_import +from __future__ import unicode_literals import datetime import decimal |