| From 0525d209616594f74c395e8db04aa745f6b190e2 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:53 +0530 |
| Subject: [PATCH 046/N] mingw use backslashes in compileall py |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| Co-authored-by: Алексей <alexey.pawlow@gmail.com> |
| --- |
| Lib/compileall.py | 2 ++ |
| 1 file changed, 2 insertions(+) |
| |
| diff --git a/Lib/compileall.py b/Lib/compileall.py |
| index fe7f450..4102839 100644 |
| --- a/Lib/compileall.py |
| +++ b/Lib/compileall.py |
| @@ -38,6 +38,8 @@ def _walk_dir(dir, maxlevels, quiet=0): |
| if name == '__pycache__': |
| continue |
| fullname = os.path.join(dir, name) |
| + if sys.platform == "win32" and sys.version.find("GCC") >= 0: |
| + fullname = fullname.replace('\\','/') |
| if not os.path.isdir(fullname): |
| yield fullname |
| elif (maxlevels > 0 and name != os.curdir and name != os.pardir and |
| -- |
| 2.32.0 |
| |