Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Lib/test/test_tools/test_compute_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion Tools/build/compute-changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
# tarfile
Path("Lib/tarfile.py"),
# tomllib
Path("Modules/tomllib/"),
Path("Lib/tomllib/"),
Copy link
Member Author

@chris-eibl chris-eibl Mar 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this needs a new issue, but maybe reusing #143572 makes sense?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since it's an internal tool, it doesn’t need a blurb/issue.

# xml
Path("Lib/xml/"),
Path("Lib/_markupbase.py"),
Expand Down
Loading