switch from simplejson to json

This commit is contained in:
Russell Haering 2013-11-04 14:54:35 -08:00
parent b0b5cf6188
commit d08ed28ae9
4 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,6 @@
setuptools==1.1.6
Twisted==13.1.0
argparse==1.2.1
simplejson==3.3.0
wsgiref==0.1.2
zope.interface==4.0.5
structlog==0.3.0
structlog==0.3.0

View File

@ -15,7 +15,7 @@ limitations under the License.
"""
import time
import simplejson as json
import json
import random
from twisted.application.service import MultiService

View File

@ -15,7 +15,7 @@ limitations under the License.
"""
from functools import wraps
import simplejson as json
import json
import uuid
import time

View File

@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import json
from twisted.internet import defer
from twisted.internet import main
@ -21,7 +22,6 @@ from twisted.internet.address import IPv4Address
from twisted.python import failure
from twisted.test.proto_helpers import StringTransportWithDisconnection
from twisted.trial import unittest
import simplejson as json
from mock import Mock
from teeth_agent.protocol import RPCCommand, RPCProtocol, RPCError, \