Skip to content

Commit 94562d2

Browse files
committed
Fixup rebase
1 parent a7d137a commit 94562d2

File tree

4 files changed

+33
-478
lines changed

4 files changed

+33
-478
lines changed

Python/bytecodes.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2315,7 +2315,8 @@ dummy_func(
23152315
}
23162316
STAT_INC(LOAD_ATTR, hit);
23172317
#ifdef Py_GIL_DISABLED
2318-
if (!_Py_TryIncrefCompareStackRef(&ep->me_value, attr_o, &attr)) {
2318+
int increfed = _Py_TryIncrefCompareStackRef(&ep->me_value, attr_o, &attr);
2319+
if (!increfed) {
23192320
DEOPT_IF(true);
23202321
}
23212322
#else

Python/executor_cases.c.h

Lines changed: 29 additions & 130 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_cases.c.h

Lines changed: 2 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)