mirror of
https://github.com/python/cpython.git
synced 2025-10-27 11:44:39 +00:00
Correct signature of __build_class__ (GH-16735)
This commit is contained in:
parent
b16e382c44
commit
e3babbd03c
1 changed files with 1 additions and 1 deletions
|
|
@ -260,7 +260,7 @@ builtin___build_class__(PyObject *self, PyObject *const *args, Py_ssize_t nargs,
|
||||||
}
|
}
|
||||||
|
|
||||||
PyDoc_STRVAR(build_class_doc,
|
PyDoc_STRVAR(build_class_doc,
|
||||||
"__build_class__(func, name, *bases, metaclass=None, **kwds) -> class\n\
|
"__build_class__(func, name, /, *bases, [metaclass], **kwds) -> class\n\
|
||||||
\n\
|
\n\
|
||||||
Internal helper function used by the class statement.");
|
Internal helper function used by the class statement.");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue