commit | f90dc36c15d7fee0efaf6d39e97be0bdf2683e93 | [log] [tgz] |
---|---|---|
author | Stefan Pochmann <609905+pochmann@users.noreply.github.com> | Wed Oct 07 16:12:52 2020 +0200 |
committer | GitHub <noreply@github.com> | Wed Oct 07 09:12:52 2020 -0500 |
tree | c174ecefcb916ee5eaab1154d4d68fbe2b834f86 | |
parent | 044a1048ca93d466965afc027b91a5a9eb9ce23c [diff] |
Fix comment about PyObject_IsTrue. (GH-22343) The `for` statement doesn't use a condition and this function, the `while` statement does.
diff --git a/Objects/object.c b/Objects/object.c index fe37344..9889503 100644 --- a/Objects/object.c +++ b/Objects/object.c
@@ -1387,7 +1387,7 @@ } -/* Test a value used as condition, e.g., in a for or if statement. +/* Test a value used as condition, e.g., in a while or if statement. Return -1 if an error occurred */ int