[Python-checkins] python/dist/src/Objects typeobject.c,2.229,2.230

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sat, 10 May 2003 00:36:58 -0700


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

Modified Files:
	typeobject.c 
Log Message:
Patch #734231: Update RiscOS support. In particular, correct 
riscospath.extsep, and use os.extsep throughout.


Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.229
retrieving revision 2.230
diff -C2 -d -r2.229 -r2.230
*** typeobject.c	23 Apr 2003 12:07:22 -0000	2.229
--- typeobject.c	10 May 2003 07:36:55 -0000	2.230
***************
*** 5087,5091 ****
  			   list.  Cut all that nonsense short -- this speeds
  			   up instance creation tremendously. */
! 			specific = type->tp_new;
  			/* XXX I'm not 100% sure that there isn't a hole
  			   in this reasoning that requires additional
--- 5087,5091 ----
  			   list.  Cut all that nonsense short -- this speeds
  			   up instance creation tremendously. */
! 			specific = (void *)type->tp_new;
  			/* XXX I'm not 100% sure that there isn't a hole
  			   in this reasoning that requires additional