Commit d4625e70 authored by Neal Norwitz's avatar Neal Norwitz

Add closing ) in comment

parent 33d9db97
......@@ -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.
* }
*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment