From a04c7ebcb97fefe9b2fea0c805112afd927ac66b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 13 Oct 2019 08:53:54 -0700 Subject: [PATCH] Correct signature of __build_class__ (GH-16735) (cherry picked from commit e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3) Co-authored-by: Pablo Galindo --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."); -- 2.47.3