From 36b5e40f34bd03d58dd4f1c6084a9bb913d23691 Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Sat, 12 Oct 2024 09:34:32 -0700 Subject: [PATCH] Add extra Path attributes in Python 3.13 --- modules/test/test/standards_exceptions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/test/test/standards_exceptions b/modules/test/test/standards_exceptions index ed1b99d37c..9ae262f26b 100644 --- a/modules/test/test/standards_exceptions +++ b/modules/test/test/standards_exceptions @@ -24,7 +24,7 @@ path_attributes = [ 'rename', 'replace', 'resolve', 'rglob', 'rmdir', 'stat', 'symlink_to', 'touch', 'unlink', 'with_name', 'with_suffix', 'expanduser', 'hardlink_to', 'home', 'is_mount', 'is_relative_to', 'readlink', 'samefile', 'with_stem', - 'is_junction', 'walk', 'with_segments' ] + 'is_junction', 'walk', 'with_segments', 'from_uri', 'full_match' ] exceptions = ["Path." + x for x in path_attributes] \ + ["TestCase." + x for x in standard_unittest_attributes] \ + ["ApplicationTestCase." + x for x in standard_unittest_attributes]