From: Stefan Pochmann <609905+pochmann@users.noreply.github.com> Date: Wed, 7 Oct 2020 14:12:52 +0000 (+0200) Subject: Fix comment about PyObject_IsTrue. (GH-22343) X-Git-Tag: v3.10.0a2~234 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f90dc36c15d7fee0efaf6d39e97be0bdf2683e93;p=thirdparty%2FPython%2Fcpython.git 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 fe3734404f5c..9889503cfd89 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1387,7 +1387,7 @@ PyObject_GenericSetDict(PyObject *obj, PyObject *value, void *context) } -/* 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