commit | e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3 | [log] [tgz] |
---|---|---|
author | Pablo Galindo <Pablogsal@gmail.com> | Sun Oct 13 16:35:41 2019 +0100 |
committer | GitHub <noreply@github.com> | Sun Oct 13 16:35:41 2019 +0100 |
tree | 3b4c6bbbd363f4e2b216dc06cd7f507efcab622b | |
parent | b16e382c446d76ede22780b15c75f43c5f132e25 [diff] |
Correct signature of __build_class__ (GH-16735)
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 728ba5b..d79e254 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c
@@ -260,7 +260,7 @@ } 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.");