1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 02:48:51 +00:00

Use the built-in json module

Python >= 2.6 comes with json by default. simplejson is only useful for Python
<= 2.5.
This commit is contained in:
Bruno Renié
2014-07-09 14:00:39 +02:00
parent 7a8715309a
commit 2eb650d5ca
16 changed files with 16 additions and 16 deletions

View File

@@ -3,7 +3,7 @@
import os
from types import FunctionType
import logging
import simplejson as json
import json
import re
import datetime
import csv, chardet, StringIO