Browse Source

Correct signature of __build_class__ (GH-16735)

pull/16753/head
Pablo Galindo 6 years ago
committed by GitHub
parent
commit
e3babbd03c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Python/bltinmodule.c

2
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.");

Loading…
Cancel
Save