mirror of
https://github.com/python/cpython.git
synced 2025-08-25 11:15:02 +00:00
bpo-46831: Update __build_class__ comment (GH-31522)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
(cherry picked from commit 81d968b7c3
)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
This commit is contained in:
parent
257f5be7f7
commit
fa8c5ed9c8
1 changed files with 2 additions and 3 deletions
|
@ -2440,9 +2440,8 @@ compiler_class(struct compiler *c, stmt_ty s)
|
||||||
/* ultimately generate code for:
|
/* ultimately generate code for:
|
||||||
<name> = __build_class__(<func>, <name>, *<bases>, **<keywords>)
|
<name> = __build_class__(<func>, <name>, *<bases>, **<keywords>)
|
||||||
where:
|
where:
|
||||||
<func> is a function/closure created from the class body;
|
<func> is a zero arg function/closure created from the class body.
|
||||||
it has a single argument (__locals__) where the dict
|
It mutates its locals to build the class namespace.
|
||||||
(or MutableSequence) representing the locals is passed
|
|
||||||
<name> is the class name
|
<name> is the class name
|
||||||
<bases> is the positional arguments and *varargs argument
|
<bases> is the positional arguments and *varargs argument
|
||||||
<keywords> is the keyword arguments and **kwds argument
|
<keywords> is the keyword arguments and **kwds argument
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue