summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-15 14:45:12 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-15 14:45:12 (GMT)
commit07323017386c3b62af515203aebeedd5b52a7cad (patch)
treec02f3dac5eedc3629dba9604b2d12c6b3d76bef9 /Objects
parent080c88b9126c13d14d2383bee345a41529f14130 (diff)
downloadcpython-07323017386c3b62af515203aebeedd5b52a7cad.zip
cpython-07323017386c3b62af515203aebeedd5b52a7cad.tar.gz
cpython-07323017386c3b62af515203aebeedd5b52a7cad.tar.bz2
Add closing ) in comment
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 9ae7185..f7f2d6b 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.
* }
*