[Python-checkins] python/dist/src/Objects dictobject.c,2.139,2.140

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sat, 15 Feb 2003 06:45:16 -0800


Update of /cvsroot/python/python/dist/src/Objects
In directory sc8-pr-cvs1:/tmp/cvs-serv26167/Objects

Modified Files:
	dictobject.c 
Log Message:
Add closing ) in comment

Index: dictobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/dictobject.c,v
retrieving revision 2.139
retrieving revision 2.140
diff -C2 -d -r2.139 -r2.140
*** dictobject.c	15 Feb 2003 03:01:11 -0000	2.139
--- dictobject.c	15 Feb 2003 14:45:12 -0000	2.140
***************
*** 649,653 ****
   *     PyObject *key, *value;
   *     i = 0;   # important!  i should not otherwise be changed by you
!  *     while (PyDict_Next(yourdict, &i, &key, &value) {
   *              Refer to borrowed references in key and value.
   *     }
--- 649,653 ----
   *     PyObject *key, *value;
   *     i = 0;   # important!  i should not otherwise be changed by you
!  *     while (PyDict_Next(yourdict, &i, &key, &value)) {
   *              Refer to borrowed references in key and value.
   *     }