diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-10-13 15:35:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-13 15:35:41 (GMT) |
commit | e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3 (patch) | |
tree | 3b4c6bbbd363f4e2b216dc06cd7f507efcab622b | |
parent | b16e382c446d76ede22780b15c75f43c5f132e25 (diff) | |
download | cpython-e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3.zip cpython-e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3.tar.gz cpython-e3babbd03cd2bcb3c85deabae3bc6976aa95a3c3.tar.bz2 |
Correct signature of __build_class__ (GH-16735)
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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."); |