[Python-checkins] python/dist/src/Objects typeobject.c,2.198,2.199

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 14 Dec 2002 09:18:00 -0800


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

Modified Files:
	typeobject.c 
Log Message:
Punctuation fix.

Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.198
retrieving revision 2.199
diff -C2 -d -r2.198 -r2.199
*** typeobject.c	13 Dec 2002 17:49:15 -0000	2.198
--- typeobject.c	14 Dec 2002 17:17:56 -0000	2.199
***************
*** 282,288 ****
  
  	/* any base that was in __bases__ but now isn't, we
! 	   need to remove |type| from it's tp_subclasses.
  	   conversely, any class now in __bases__ that wasn't
! 	   needs to have |type| added to it's subclasses. */
  
  	/* for now, sod that: just remove from all old_bases,
--- 282,288 ----
  
  	/* any base that was in __bases__ but now isn't, we
! 	   need to remove |type| from its tp_subclasses.
  	   conversely, any class now in __bases__ that wasn't
! 	   needs to have |type| added to its subclasses. */
  
  	/* for now, sod that: just remove from all old_bases,