Skip to content

Commit 52beebc

Browse files
authored
gh-109136: Fix summarize_stats.py tool (#109137)
1 parent 6275c67 commit 52beebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/scripts/summarize_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def emit_comparative_specialization_overview(base_opcode_stats, base_total, head
430430
)
431431

432432
def get_stats_defines():
433-
stats_path = os.path.join(os.path.dirname(__file__), "../../Include/pystats.h")
433+
stats_path = os.path.join(os.path.dirname(__file__), "../../Include/cpython/pystats.h")
434434
with open(stats_path) as stats_src:
435435
defines = parse_kinds(stats_src, prefix="EVAL_CALL")
436436
return defines

0 commit comments

Comments
 (0)