8000 GH-123197: Increment correct stat for CALL_KW (GH-123200) · python/cpython@7b26c4d · GitHub
[go: up one dir, main page]

Skip to content

Commit 7b26c4d

Browse files
authored
GH-123197: Increment correct stat for CALL_KW (GH-123200)
1 parent 1eba8ba commit 7b26c4d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Python/bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4194,7 +4194,7 @@ dummy_func(
41944194
_Py_Specialize_CallKw(callable, next_instr, oparg + !PyStackRef_IsNull(self_or_null));
41954195
DISPATCH_SAME_OPARG();
41964196
}
4197-
STAT_INC(CALL, deferred);
4197+
STAT_INC(CALL_KW, deferred);
41984198
ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
41994199
#endif /* ENABLE_SPECIALIZATION */
42004200
}

Python/generated_cases.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0