From 473b35e6ec1f51493b372d16449dbc699661d69c 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 9a1f9110..15a79174 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -78,9 +78,9 @@ class TestSetupReadline(unittest.TestCase): # 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