1
0
forked from VimPlug/jedi

Fix for Python 2 and 3 on Windows, see #1037.

This commit is contained in:
T.Rzepka
2018-02-17 13:49:10 +01:00
parent afee465518
commit 99130e7664
2 changed files with 29 additions and 8 deletions

View File

@@ -187,7 +187,6 @@ class _CompiledSubprocess(object):
data = evaluator_id, function, args, kwargs
try:
pickle_dump(data, self._process.stdin)
self._process.stdin.flush()
except (socket.error, IOError) as e:
# Once Python2 will be removed we can just use `BrokenPipeError`.
if e.errno != errno.EPIPE:
@@ -283,7 +282,6 @@ class Listener(object):
result = True, traceback.format_exc(), e
pickle_dump(result, file=stdout)
stdout.flush()
class AccessHandle(object):