From 6df74fab0518dfefe4820f3c8bba8f50f8ae514e Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sun, 23 Jun 2024 12:56:48 +0100 Subject: [PATCH] Ignore more items extra in Python 3.13 --- test/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_utils.py b/test/test_utils.py index 9a1f91108..15a791744 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -78,9 +78,9 @@ def test_import(self): # items as well as items that are not only available on linux. difference = set(self.complete(s)).symmetric_difference(goal) ACCEPTED_DIFFERENCE_PREFIXES = [ - '_', 'O_', 'EX_', 'MFD_', + '_', 'O_', 'EX_', 'EFD_', 'MFD_', 'TFD_', 'SF_', 'ST_', 'CLD_', 'POSIX_SPAWN_', 'P_', - 'RWF_', 'CLONE_', 'SCHED_', + 'RWF_', 'CLONE_', 'SCHED_', 'SPLICE_', ] difference = { x for x in difference