summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-10-13 16:35:41 +0100
committerGitHub <noreply@github.com>2019-10-13 16:35:41 +0100
commite3babbd03cd2bcb3c85deabae3bc6976aa95a3c3 (patch)
tree3b4c6bbbd363f4e2b216dc06cd7f507efcab622b
parentb16e382c446d76ede22780b15c75f43c5f132e25 (diff)
downloadcpython-git-e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3.tar.gz
Correct signature of __build_class__ (GH-16735)
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
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.");