Skip to content

Commit f5b1923

Browse files
committed
Fix BINARY_OP stats
1 parent f9e388b commit f5b1923

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Python/ceval.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4653,6 +4653,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, InterpreterFrame *frame, int thr
46534653

46544654
TARGET(BINARY_OP) {
46554655
PREDICTED(BINARY_OP);
4656+
STAT_INC(BINARY_OP, unquickened);
46564657
PyObject *rhs = POP();
46574658
PyObject *lhs = TOP();
46584659
PyObject *res;

0 commit comments

Comments
 (0)