Release: dev → main (first public release) #258

Merged
bvandeusen merged 94 commits from dev into main 2026-09-25 10:02:40 -04:00
Showing only changes of commit fb7563e263 - Show all commits
+1 -1
View File
@@ -294,7 +294,7 @@ def test_a_name_reused_across_many_posts_is_still_caught():
"""The other half of the same property — the cap has to keep working once
the unit changes. Measured habits: tamadaheijun's `comic2` spans 8 posts,
conto's `seth2` 5."""
counts = token_frequencies([["comic2_%02d.jpg" % i] for i in range(8)])
counts = token_frequencies([[f"comic2_{i:02d}.jpg"] for i in range(8)])
assert counts["comic2"] == 8
assert shared_identity({"comic2"}, {"comic2"}, counts) == (0.0, None)