diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-02-15 14:45:12 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-02-15 14:45:12 (GMT) |
commit | 07323017386c3b62af515203aebeedd5b52a7cad (patch) | |
tree | c02f3dac5eedc3629dba9604b2d12c6b3d76bef9 /Objects | |
parent | 080c88b9126c13d14d2383bee345a41529f14130 (diff) | |
download | cpython-07323017386c3b62af515203aebeedd5b52a7cad.zip cpython-07323017386c3b62af515203aebeedd5b52a7cad.tar.gz cpython-07323017386c3b62af515203aebeedd5b52a7cad.tar.bz2 |
Add closing ) in comment
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/dictobject.c | 2 |
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. * } * |