]> granicus.if.org Git - python/commitdiff
Correct signature of __build_class__ (GH-16735)
authorPablo Galindo <Pablogsal@gmail.com>
Sun, 13 Oct 2019 15:35:41 +0000 (16:35 +0100)
committerGitHub <noreply@github.com>
Sun, 13 Oct 2019 15:35:41 +0000 (16:35 +0100)
Python/bltinmodule.c

index 728ba5bdc99bd16eaede5b71c1247260a52b779c..d79e254cc68ca8fde42a428e6bcf806538589e45 100644 (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.");