https://github.com/python/cpython/commit/3e173e505a5267bbf8c372ffea9d1e9e7f67c5bd
commit: 3e173e505a5267bbf8c372ffea9d1e9e7f67c5bd
branch: 3.13
author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com>
committer: vstinner <vstin...@python.org>
date: 2025-03-11T09:33:50Z
summary:

[3.13] gh-130932: cwd cannot be removed on Solaris/Illumos (GH-131037) (#131073)

gh-130932: cwd cannot be removed on Solaris/Illumos (GH-131037)
(cherry picked from commit 69309a55bcb5381a9a218edc910da135f4d67479)

Co-authored-by: Jakub KulĂ­k <kulik...@gmail.com>

files:
M Lib/test/test_import/__init__.py

diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py
index 9fd4dd4ed48e74..fe70ac7d8713c0 100644
--- a/Lib/test/test_import/__init__.py
+++ b/Lib/test/test_import/__init__.py
@@ -1204,6 +1204,7 @@ class substr(str):
                 self.assertRegex(line, rb"cannot import name 'Fraction' from 
'fractions' \(.*\)")
 
     @unittest.skipIf(sys.platform == 'win32', 'Cannot delete cwd on Windows')
+    @unittest.skipIf(sys.platform == 'sunos5', 'Cannot delete cwd on 
Solaris/Illumos')
     def test_script_shadowing_stdlib_cwd_failure(self):
         with os_helper.temp_dir() as tmp:
             subtmp = os.path.join(tmp, "subtmp")

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to