diff options
author | Alex Povel <48824213+alexpovel@users.noreply.github.com> | 2020-06-03 13:19:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 13:19:45 (GMT) |
commit | df773f8c5454acebe08c31e7308597fa5a8bf5df (patch) | |
tree | 2fa74219bec185b45dbd2b0eac0795cc9f42a228 /Python/bltinmodule.c | |
parent | c822efeda9a0afe87cf3429724732fc8e19a01fb (diff) | |
download | cpython-df773f8c5454acebe08c31e7308597fa5a8bf5df.zip cpython-df773f8c5454acebe08c31e7308597fa5a8bf5df.tar.gz cpython-df773f8c5454acebe08c31e7308597fa5a8bf5df.tar.bz2 |
bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847)
Just a brief grammar fix.
See also <>.
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 199b09c..65f9528 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -2494,17 +2494,17 @@ issubclass as builtin_issubclass class_or_tuple: object / -Return whether 'cls' is a derived from another class or is the same class. +Return whether 'cls' is derived from another class or is the same class. A tuple, as in ``issubclass(x, (A, B, ...))``, may be given as the target to check against. This is equivalent to ``issubclass(x, A) or issubclass(x, B) -or ...`` etc. +or ...``. [clinic start generated code]*/ static PyObject * builtin_issubclass_impl(PyObject *module, PyObject *cls, PyObject *class_or_tuple) -/*[clinic end generated code: output=358412410cd7a250 input=af5f35e9ceaddaf6]*/ +/*[clinic end generated code: output=358412410cd7a250 input=a24b9f3d58c370d6]*/ { int retval; |