36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From 6ca1d84ac1307c5a114b2c5ac716c45091f11779 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?=
|
|
<alexey.pawlow@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:51:41 +0530
|
|
Subject: [PATCH 073/N] distutils: 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: Алексей <alexey.pawlow@gmail.com>
|
|
---
|
|
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 @@
|
|
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()
|