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

Guido van Rossum gvanrossum@users.sourceforge.net
Fri, 05 Apr 2002 09:10:18 -0800


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

Modified Files:
	typeobject.c 
Log Message:
Inherit tp_new and tp_is_gc.

Bugfix candidate.


Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.136
retrieving revision 2.137
diff -C2 -d -r2.136 -r2.137
*** typeobject.c	4 Apr 2002 23:44:47 -0000	2.136
--- typeobject.c	5 Apr 2002 17:10:16 -0000	2.137
***************
*** 2025,2028 ****
--- 2025,2030 ----
  		COPYSLOT(tp_alloc);
  		COPYSLOT(tp_free);
+ 		COPYSLOT(tp_new);
+ 		COPYSLOT(tp_is_gc);
  	}
  }