mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 04:00:05 +02:00
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:
@@ -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
|
||||
Reference in New Issue
Block a user