[Python-checkins] CVS: python/dist/src/Objects abstract.c,2.77,2.78
Tim Peters
tim_one@users.sourceforge.net
Mon, 10 Sep 2001 16:53:55 -0700
Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv9977/python/Objects
Modified Files:
abstract.c
Log Message:
Fix tortured comment -- I must be on drugs today.
Index: abstract.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/abstract.c,v
retrieving revision 2.77
retrieving revision 2.78
diff -C2 -d -r2.77 -r2.78
*** abstract.c 2001/09/10 23:37:46 2.77
--- abstract.c 2001/09/10 23:53:53 2.78
***************
*** 1239,1244 ****
/* Note that we can't know whether it's safe to return
a tuple *subclass* instance as-is, hence the restriction
! to exact tuples here. In contrasts, lists always make
! a copy, so there's need for exactness below. */
Py_INCREF(v);
return v;
--- 1239,1244 ----
/* Note that we can't know whether it's safe to return
a tuple *subclass* instance as-is, hence the restriction
! to exact tuples here. In contrast, lists always make
! a copy, so there's no need for exactness below. */
Py_INCREF(v);
return v;