python39: bump to version 3.9.14 (#7246)

* Sorted the requires libs/cmds. No functional changes intended.
* Removed a, now unnecessary, patch from the patchset.
This commit is contained in:
OscarL
2022-10-02 13:08:09 -03:00
committed by GitHub
parent 92a4913e68
commit 1bd6275b9d
3 changed files with 8 additions and 21 deletions

View File

@@ -228,19 +228,6 @@ index 2671d6a..d80a5c4 100644
not sys.platform.startswith(('sunos', 'aix')):
# Somehow /dev/tty appears seekable on some BSDs
self.assertEqual(f.seekable(), False)
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index 890b7e0..d51c370 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -1166,7 +1166,7 @@ class PosixTester(unittest.TestCase):
posix.close(f)
support.rmtree(support.TESTFN + 'dir')
- @unittest.skipUnless((os.mknod in os.supports_dir_fd) and hasattr(stat, 'S_IFIFO'),
+ @unittest.skipUnless(hasattr(os, 'mknod') and (os.mknod in os.supports_dir_fd) and hasattr(stat, 'S_IFIFO'),
"test requires both stat.S_IFIFO and dir_fd support for os.mknod()")
def test_mknod_dir_fd(self):
# Test using mknodat() to create a FIFO (the only use specified
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 42b1ec6..031a856 100644
--- a/Makefile.pre.in