1
0
forked from VimPlug/jedi

Get the subprocess mostly working

This commit is contained in:
Dave Halter
2017-12-08 09:44:12 +01:00
parent a210be8198
commit 649225333f
6 changed files with 59 additions and 31 deletions

View File

@@ -289,3 +289,9 @@ def utf8_repr(func):
return func
else:
return wrapper
if is_py3:
import queue
else:
import Queue as queue