https://github.com/python/cpython/commit/b4460925a48f41497857fa2b20fbfb33836ceed8
commit: b4460925a48f41497857fa2b20fbfb33836ceed8
branch: main
author: Chris Eibl <[email protected]>
committer: encukou <[email protected]>
date: 2026-03-09T10:23:34+01:00
summary:

Fix intermittent `test_ci_fuzz_stdlib` failures (GH-145641)

files:
M Lib/test/test_tools/test_compute_changes.py
M Tools/build/compute-changes.py

diff --git a/Lib/test/test_tools/test_compute_changes.py 
b/Lib/test/test_tools/test_compute_changes.py
index c4e3ffdb4de6cf..351fb06a885006 100644
--- a/Lib/test/test_tools/test_compute_changes.py
+++ b/Lib/test/test_tools/test_compute_changes.py
@@ -54,6 +54,8 @@ def test_ci_fuzz_stdlib(self):
                         f = p / "file"
                     elif p.is_file():
                         f = p
+                    else:
+                        self.fail(f"LIBRARY_FUZZER_PATHS contains an invalid 
entry: {p!r}")
                     result = process_changed_files({f})
                     self.assertTrue(result.run_ci_fuzz_stdlib)
                     self.assertTrue(is_fuzzable_library_file(f))
diff --git a/Tools/build/compute-changes.py b/Tools/build/compute-changes.py
index 981e00e28b42a7..4d92b083026b27 100644
--- a/Tools/build/compute-changes.py
+++ b/Tools/build/compute-changes.py
@@ -90,7 +90,7 @@
     # tarfile
     Path("Lib/tarfile.py"),
     # tomllib
-    Path("Modules/tomllib/"),
+    Path("Lib/tomllib/"),
     # xml
     Path("Lib/xml/"),
     Path("Lib/_markupbase.py"),

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to