Blame 00316-mark-bdist_wininst-unsupported.patch

001857d
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
213569f
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
213569f
Date: Fri, 19 Jun 2020 16:16:41 +0200
213569f
Subject: [PATCH] 00316: Mark bdist_wininst unsupported
213569f
213569f
We remove the exe files from distutil's bdist_wininst
213569f
So we mark the command as unsupported - and the tests are skipped
213569f
---
213569f
 Lib/distutils/command/bdist_wininst.py | 2 ++
213569f
 1 file changed, 2 insertions(+)
213569f
15d5b5c
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
213569f
index 15434c3a98..829c1c6803 100644
15d5b5c
--- a/Lib/distutils/command/bdist_wininst.py
15d5b5c
+++ b/Lib/distutils/command/bdist_wininst.py
15d5b5c
@@ -12,6 +12,8 @@ from distutils.sysconfig import get_python_version
15d5b5c
 from distutils import log
15d5b5c
 
15d5b5c
 class bdist_wininst(Command):
15d5b5c
+    # Marker for tests that we have the unsupported bdist_wininst
15d5b5c
+    _unsupported = True
15d5b5c
 
15d5b5c
     description = "create an executable installer for MS Windows"
15d5b5c