Browse Source
Correct signature of __build_class__ (GH-16735)
pull/16753/head
Pablo Galindo
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Python/bltinmodule.c
|
|
|
@ -260,7 +260,7 @@ error: |
|
|
|
} |
|
|
|
|
|
|
|
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\ |
|
|
|
Internal helper function used by the class statement."); |
|
|
|
|
|
|
|
|