From 446de514021d024ebb1eab3af63930e924ae8a6f Mon Sep 17 00:00:00 2001 From: "T.Rzepka" Date: Sat, 17 Feb 2018 12:09:35 +0100 Subject: [PATCH] Revert "Fix for Python 2 on Windows, see #1037." This reverts commit b38d31b99d46815967b56fa81468f4ec12b252ee. --- AUTHORS.txt | 1 - jedi/evaluate/compiled/subprocess/__init__.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index bce27b07..691795dd 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -47,6 +47,5 @@ Simon Ruggier (@sruggier) Robin Roth (@robinro) Malte Plath (@langsamer) Anton Zub (@zabulazza) -Tobias Rzepka (@TobiasRzepka) Note: (@user) means a github user name. diff --git a/jedi/evaluate/compiled/subprocess/__init__.py b/jedi/evaluate/compiled/subprocess/__init__.py index e4d5a304..a8de8792 100644 --- a/jedi/evaluate/compiled/subprocess/__init__.py +++ b/jedi/evaluate/compiled/subprocess/__init__.py @@ -138,13 +138,11 @@ class _CompiledSubprocess(object): _MAIN_PATH, os.path.dirname(os.path.dirname(parso_path)) ) - universal_newlines = not is_py3 return subprocess.Popen( args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, # stderr=subprocess.PIPE - universal_newlines=universal_newlines ) def run(self, evaluator, function, args=(), kwargs={}):