mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
GH-120024: Tidy up case generator code a bit. (GH-122780)
This commit is contained in:
parent
0d9c123d1a
commit
81c739e2dc
11 changed files with 175 additions and 103 deletions
3
Python/generated_cases.c.h
generated
3
Python/generated_cases.c.h
generated
|
@ -882,7 +882,6 @@
|
|||
}
|
||||
}
|
||||
// _DO_CALL
|
||||
args = &stack_pointer[-oparg];
|
||||
self_or_null = maybe_self;
|
||||
callable = func;
|
||||
{
|
||||
|
@ -3651,7 +3650,6 @@
|
|||
}
|
||||
}
|
||||
// _MONITOR_CALL
|
||||
args = &stack_pointer[-oparg];
|
||||
{
|
||||
int is_meth = !PyStackRef_IsNull(maybe_self);
|
||||
PyObject *function = PyStackRef_AsPyObjectBorrow(func);
|
||||
|
@ -3672,7 +3670,6 @@
|
|||
if (err) goto error;
|
||||
}
|
||||
// _DO_CALL
|
||||
args = &stack_pointer[-oparg];
|
||||
self_or_null = maybe_self;
|
||||
callable = func;
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue