Removed legacy fallback for python3.2

This commit is contained in:
Alex Gaynor
2017-06-25 12:51:15 -04:00
committed by GitHub
parent bbeb1c32d2
commit c054a722bb
+1 -3
View File
@@ -27,9 +27,7 @@ is_py3 = (_ver[0] == 3)
try:
import simplejson as json
except (ImportError, SyntaxError):
# simplejson does not support Python 3.2, it throws a SyntaxError
# because of u'...' Unicode literals.
except ImportError:
import json
# ---------