1
0
forked from VimPlug/jedi

basic pickle implementation #102

This commit is contained in:
David Halter
2013-01-11 22:00:03 +01:00
parent c923c93ccc
commit 1017db903c
7 changed files with 112 additions and 29 deletions

View File

@@ -172,3 +172,9 @@ try:
from functools import reduce
except ImportError:
reduce = reduce
try:
import json
except ImportError:
# python 2.5
import simplejson as json