[Python-checkins] CVS: python/dist/src/Objects typeobject.c,2.16.8.39,2.16.8.40

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 14 Jun 2001 07:13:48 -0700


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

Modified Files:
      Tag: descr-branch
	typeobject.c 
Log Message:
Don't inherit tp_name -- like tp_doc, it would be a lie.


Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.16.8.39
retrieving revision 2.16.8.40
diff -C2 -r2.16.8.39 -r2.16.8.40
*** typeobject.c	2001/06/14 00:54:06	2.16.8.39
--- typeobject.c	2001/06/14 14:13:46	2.16.8.40
***************
*** 904,909 ****
  	}
  
- 	COPYSLOT(tp_name);
- 
  	/* Copying basicsize is connected to the GC flags */
  	oldsize = base->tp_basicsize;
--- 904,907 ----