From 4ffbd9b3c17b527f172d805010b5e20679165833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9?= Date: Thu, 17 Jun 2021 18:51:41 +0530 Subject: [PATCH 031/N] MINGW avoid circular dependency from time module dur MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Алексей --- Lib/distutils/cygwinccompiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py index 39ad631..5b281e2 100644 --- a/Lib/distutils/cygwinccompiler.py +++ b/Lib/distutils/cygwinccompiler.py @@ -48,7 +48,6 @@ cygwin in no-cygwin mode). import os import sys import copy -from subprocess import Popen, PIPE, check_output import re from distutils.unixccompiler import UnixCCompiler @@ -383,6 +382,7 @@ def _find_exe_version(cmd): executable = cmd.split()[0] if find_executable(executable) is None: return None + from subprocess import Popen, PIPE out = Popen(cmd, shell=True, stdout=PIPE).stdout try: out_string = out.read() -- 2.32.0