MINGW-packages/mingw-w64-python3.13/0045-importlib-bootstrap-path-sep.patch
Christoph Reiter 04c9ed3700 python3.13: Add 3.13.7
* add libb2 as dep
* remove "-Wl,--large-address-aware", default now via makepkg
* remove 2to3 logic, no longer in Python
2025-09-08 22:02:30 +02:00

30 lines
1007 B
Diff

From e7ac6209824421e311fcd8417c50c130776c88e8 Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Thu, 17 Jun 2021 18:52:30 +0530
Subject: [PATCH 045/N] importlib bootstrap path sep
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
Co-authored-by: Naveen M K <naveen521kk@gmail.com>
---
Lib/importlib/_bootstrap_external.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py
index eb8fea1..e9a7a84 100644
--- a/Lib/importlib/_bootstrap_external.py
+++ b/Lib/importlib/_bootstrap_external.py
@@ -42,6 +42,10 @@ if _MS_WINDOWS:
path_separators = ['\\', '/']
else:
path_separators = ['/']
+
+if 'MSYSTEM' in _os.environ:
+ path_separators = path_separators[::-1]
+
# Assumption made in _path_join()
assert all(len(sep) == 1 for sep in path_separators)
path_sep = path_separators[0]