1
0
forked from VimPlug/jedi

Use highest possible pickle protocol

This commit is contained in:
micbou
2018-06-20 14:55:04 +02:00
committed by Dave Halter
parent ea71dedaa1
commit 282c6a2ba1
5 changed files with 59 additions and 15 deletions
@@ -45,5 +45,7 @@ else:
load('jedi')
from jedi.evaluate.compiled import subprocess # NOQA
# Retrieve the pickle protocol.
pickle_protocol = int(sys.argv[2])
# And finally start the client.
subprocess.Listener().listen()
subprocess.Listener(pickle_protocol).listen()