summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-10-13 15:53:54 (GMT)
committerGitHub <noreply@github.com>2019-10-13 15:53:54 (GMT)
commita04c7ebcb97fefe9b2fea0c805112afd927ac66b (patch)
tree4852be6efd763bc25cebbf5038421d1b40975c97 /Python/bltinmodule.c
parent6da52ac411947d1a7958bbad831fcf8dfc8c95fe (diff)
downloadcpython-a04c7ebcb97fefe9b2fea0c805112afd927ac66b.zip
cpython-a04c7ebcb97fefe9b2fea0c805112afd927ac66b.tar.gz
cpython-a04c7ebcb97fefe9b2fea0c805112afd927ac66b.tar.bz2
Correct signature of __build_class__ (GH-16735)
(cherry picked from commit e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 90a6b9f..33f9690 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.");