]> granicus.if.org Git - python/commitdiff
Add closing ) in comment
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 15 Feb 2003 14:45:12 +0000 (14:45 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 15 Feb 2003 14:45:12 +0000 (14:45 +0000)
Objects/dictobject.c

index 9ae71855d27ad413ad4e56772e5a7c505a3c998e..f7f2d6b65e0787801491ee001b26fad8646fb9b4 100644 (file)
@@ -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.
  *     }
  *