Correct signature of __build_class__ (GH-16735)

This commit is contained in:
Pablo Galindo 2019-10-13 16:35:41 +01:00 committed by GitHub
parent b16e382c44
commit e3babbd03c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.");