From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 13 Oct 2019 15:53:54 +0000 (-0700) Subject: Correct signature of __build_class__ (GH-16735) X-Git-Tag: v3.8.0~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a04c7ebcb97fefe9b2fea0c805112afd927ac66b;p=thirdparty%2FPython%2Fcpython.git Correct signature of __build_class__ (GH-16735) (cherry picked from commit e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3) Co-authored-by: Pablo Galindo --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 90a6b9fc6e24..33f969094e7d 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -261,7 +261,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.");