We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a10e0f commit 167c4daCopy full SHA for 167c4da
riak/tests/test_kv.py
@@ -2,7 +2,10 @@
2
import os
3
import cPickle
4
import copy
5
-import json
+try:
6
+ import simplejson as json
7
+except ImportError:
8
+ import json
9
10
11
class NotJsonSerializable(object):
riak/transports/http/transport.py
@@ -19,7 +19,11 @@
19
under the License.
20
"""
21
22
23
24
25
26
+
27
import urllib
28
import re
29
import csv
0 commit comments