···4040readme:
4141 cd examples/gallery; ./fill.rb
42424343-analyze_times:
4343+timings:
4444 just
4545 rm timings.log
4646 python script/debug-performance.py
+1-1
script/debug-performance.py
···22222323timings = [
2424 line.split(" took ")
2525- for line in Path("timings.log").read_text().splitlines()
2525+ for line in Path("timings.log").read_text(encoding="utf-8").splitlines()
2626 if " took " in line
2727]
2828