mirror of https://github.com/pallets/flask.git
Merge branch 'master' of github.com:mitsuhiko/flask
This commit is contained in:
commit
a532568680
1
AUTHORS
1
AUTHORS
|
@ -24,4 +24,5 @@ Patches and Suggestions
|
||||||
- Sebastien Estienne
|
- Sebastien Estienne
|
||||||
- Simon Sapin
|
- Simon Sapin
|
||||||
- Stephane Wirtel
|
- Stephane Wirtel
|
||||||
|
- Thomas Schranz
|
||||||
- Zhao Xiaohong
|
- Zhao Xiaohong
|
||||||
|
|
|
@ -26,7 +26,12 @@ except ImportError:
|
||||||
try:
|
try:
|
||||||
import json
|
import json
|
||||||
except ImportError:
|
except ImportError:
|
||||||
json_available = False
|
try:
|
||||||
|
# Google Appengine offers simplejson via django
|
||||||
|
from django.utils import simplejson as json
|
||||||
|
except ImportError:
|
||||||
|
json_available = False
|
||||||
|
|
||||||
|
|
||||||
from werkzeug import Headers, wrap_file, is_resource_modified, cached_property
|
from werkzeug import Headers, wrap_file, is_resource_modified, cached_property
|
||||||
from werkzeug.exceptions import NotFound
|
from werkzeug.exceptions import NotFound
|
||||||
|
|
Loading…
Reference in New Issue