Update outdated LOAD_METHOD comments in Python/ceval.c (GH-92641)

(cherry picked from commit bdf9969197)

Co-authored-by: Crowthebird <78076854+thatbirdguythatuknownot@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-05-12 05:59:36 -07:00 committed by GitHub
parent 6e1a214426
commit 3d1ad42591
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4537,7 +4537,7 @@ handle_eval_breaker:
TARGET(LOAD_METHOD) {
PREDICTED(LOAD_METHOD);
/* Designed to work in tandem with CALL_METHOD. */
/* Designed to work in tandem with PRECALL. */
PyObject *name = GETITEM(names, oparg);
PyObject *obj = TOP();
PyObject *meth = NULL;
@ -4562,7 +4562,7 @@ handle_eval_breaker:
/* meth is not an unbound method (but a regular attr, or
something was returned by a descriptor protocol). Set
the second element of the stack to NULL, to signal
CALL_METHOD that it's not a method call.
PRECALL that it's not a method call.
NULL | meth | arg1 | ... | argN
*/