summarylogtreecommitdiffstats
path: root/0089-pathlib-path-sep.patch
diff options
context:
space:
mode:
Diffstat (limited to '0089-pathlib-path-sep.patch')
-rw-r--r--0089-pathlib-path-sep.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/0089-pathlib-path-sep.patch b/0089-pathlib-path-sep.patch
deleted file mode 100644
index ca87d8ae15ac..000000000000
--- a/0089-pathlib-path-sep.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From df3c78d7fbec2a02d559d26315c00d8f29e0a6c8 Mon Sep 17 00:00:00 2001
-From: Christoph Reiter <reiter.christoph@gmail.com>
-Date: Thu, 17 Jun 2021 18:52:31 +0530
-Subject: [PATCH 089/N] pathlib path sep
-
----
- Lib/pathlib.py | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/Lib/pathlib.py b/Lib/pathlib.py
-index 60e2855..9fc9f38 100644
---- a/Lib/pathlib.py
-+++ b/Lib/pathlib.py
-@@ -123,6 +123,8 @@ class _WindowsFlavour(_Flavour):
-
- sep = '\\'
- altsep = '/'
-+ if 'MSYSTEM' in os.environ:
-+ sep, altsep = altsep, sep
- has_drv = True
- pathmod = ntpath
-
---
-2.32.0
-