From: Neal Norwitz Date: Sat, 15 Feb 2003 14:45:12 +0000 (+0000) Subject: Add closing ) in comment X-Git-Tag: v2.3c1~1834 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07323017386c3b62af515203aebeedd5b52a7cad;p=thirdparty%2FPython%2Fcpython.git Add closing ) in comment --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 9ae71855d27a..f7f2d6b65e07 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -648,7 +648,7 @@ PyDict_Clear(PyObject *op) * int i; * PyObject *key, *value; * i = 0; # important! i should not otherwise be changed by you - * while (PyDict_Next(yourdict, &i, &key, &value) { + * while (PyDict_Next(yourdict, &i, &key, &value)) { * Refer to borrowed references in key and value. * } *