From 1d428bb8c93120d449212e2a815988f28e33b868 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 2 Mar 2022 21:59:57 -0800 Subject: bpo-46831: Update __build_class__ comment (GH-31522) Co-authored-by: Jelle Zijlstra (cherry picked from commit 81d968b7c30d5b41f3f28b297b7ee5345d569509) Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> --- Python/compile.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Python/compile.c b/Python/compile.c index f426050..28003b6 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -2319,9 +2319,8 @@ compiler_class(struct compiler *c, stmt_ty s) /* ultimately generate code for: = __build_class__(, , *, **) where: - is a function/closure created from the class body; - it has a single argument (__locals__) where the dict - (or MutableSequence) representing the locals is passed + is a zero arg function/closure created from the class body. + It mutates its locals to build the class namespace. is the class name is the positional arguments and *varargs argument is the keyword arguments and **kwds argument -- cgit v0.12