Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use simplejson module everywhere #1148

Merged
merged 1 commit into from May 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion eve/methods/get.py
Expand Up @@ -13,7 +13,7 @@
import math

import copy
import json
import simplejson as json
from flask import current_app as app, abort, request
from werkzeug import MultiDict

Expand Down
2 changes: 1 addition & 1 deletion eve/tests/auth.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
import json
import simplejson as json

from bson import ObjectId

Expand Down
2 changes: 1 addition & 1 deletion eve/tests/io/multi_mongo.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from datetime import datetime

import json
import simplejson as json
from bson import ObjectId
from pymongo import MongoClient
from pymongo.errors import OperationFailure
Expand Down