forked from VimPlug/jedi
Use cPickle if available
This commit is contained in:
+4
-1
@@ -21,7 +21,10 @@ from __future__ import with_statement
|
|||||||
import time
|
import time
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import pickle
|
try:
|
||||||
|
import cPickle as pickle
|
||||||
|
except:
|
||||||
|
import pickle
|
||||||
|
|
||||||
from _compatibility import json
|
from _compatibility import json
|
||||||
import settings
|
import settings
|
||||||
|
|||||||
Reference in New Issue
Block a user