Skip to content

Commit

Permalink
Ignore more items extra in Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJCLaw committed Jul 1, 2024
1 parent 0ca5e3d commit 3ba4cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ba4cff

Please sign in to comment.