Skip to content

Commit be50e24

Browse files
committed
Rename parameter
1 parent 6e11442 commit be50e24

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Python/bytecodes.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4359,18 +4359,18 @@ dummy_func(
43594359
DEOPT_IF(callable_o != interp->callable_cache.isinstance);
43604360
}
43614361

4362-
op(_CALL_ISINSTANCE, (callable, null, inst_, cls -- res)) {
4362+
op(_CALL_ISINSTANCE, (callable, null, instance, cls -- res)) {
43634363
/* isinstance(o, o2) */
43644364
STAT_INC(CALL, hit);
4365-
PyObject *inst_o = PyStackRef_AsPyObjectBorrow(inst_);
4365+
PyObject *inst_o = PyStackRef_AsPyObjectBorrow(instance);
43664366
PyObject *cls_o = PyStackRef_AsPyObjectBorrow(cls);
43674367
int retval = PyObject_IsInstance(inst_o, cls_o);
43684368
if (retval < 0) {
43694369
ERROR_NO_POP();
43704370
}
43714371
(void)null; // Silence compiler warnings about unused variables
43724372
PyStackRef_CLOSE(cls);
4373-
PyStackRef_CLOSE(inst_);
4373+
PyStackRef_CLOSE(instance);
43744374
DEAD(null);
43754375
PyStackRef_CLOSE(callable);
43764376
res = retval ? PyStackRef_True : PyStackRef_False;

Python/executor_cases.c.h

Lines changed: 4 additions & 4 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: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)