summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/django/utils/simplejson.py
diff options
context:
space:
mode:
authorcoderick142017-05-17 15:40:18 +0530
committercoderick142017-05-17 15:41:00 +0530
commita1e0a5502f04da68b6a9ca8508dda3f9d7e1d055 (patch)
tree20181e6b1936f50ad48d8e35720d64a37566f558 /lib/python2.7/site-packages/django/utils/simplejson.py
parent6f4a84c1e58ff4d54aab94cbee26e995328b05b8 (diff)
downloadSBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.gz
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.bz2
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.zip
Upgrade to Django 1.11
- Database integration yet to be tested
Diffstat (limited to 'lib/python2.7/site-packages/django/utils/simplejson.py')
-rw-r--r--lib/python2.7/site-packages/django/utils/simplejson.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/python2.7/site-packages/django/utils/simplejson.py b/lib/python2.7/site-packages/django/utils/simplejson.py
deleted file mode 100644
index d4032a6..0000000
--- a/lib/python2.7/site-packages/django/utils/simplejson.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# Django 1.5 only supports Python >= 2.6, where the standard library includes
-# the json module. Previous version of Django shipped a copy for Python < 2.6.
-
-# For backwards compatibility, we're keeping an importable json module
-# at this location, with the same lookup sequence.
-
-# Avoid shadowing the simplejson module
-from __future__ import absolute_import
-
-import warnings
-warnings.warn("django.utils.simplejson is deprecated; use json instead.",
- DeprecationWarning, stacklevel=2)
-
-try:
- import simplejson
-except ImportError:
- use_simplejson = False
-else:
- # The system-installed version has priority providing it is either not an
- # earlier version or it contains the C speedups.
- from json import __version__ as stdlib_json_version
- use_simplejson = (hasattr(simplejson, '_speedups') or
- simplejson.__version__.split('.') >= stdlib_json_version.split('.'))
-
-# Make sure we copy over the version. See #17071
-if use_simplejson:
- from simplejson import *
- from simplejson import __version__
-else:
- from json import *
- from json import __version__