From e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Sun, 13 Oct 2019 16:35:41 +0100 Subject: Correct signature of __build_class__ (GH-16735) --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 728ba5bdc9..d79e254cc6 100644 --- a/Python/bltinmodule.c +++ b/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."); -- cgit v1.2.1