[Python-checkins] CVS: python/dist/src/PC config.c,1.31.6.1,1.31.6.2

Tim Peters tim_one@users.sourceforge.net
Fri, 06 Jul 2001 11:53:50 -0700


Update of /cvsroot/python/python/dist/src/PC
In directory usw-pr-cvs1:/tmp/cvs-serv30306/descr/dist/src/PC

Modified Files:
      Tag: descr-branch
	config.c 
Log Message:
Rename spam.c to xxsubtype.c, to serve as a permanent subtyping example
we can merge back into the trunk later.
TODO:  This works on Windows but I don't know what's needed on Unix.
Leaving that part to Guido.


Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.31.6.1
retrieving revision 1.31.6.2
diff -C2 -r1.31.6.1 -r1.31.6.2
*** config.c	2001/07/03 01:26:36	1.31.6.1
--- config.c	2001/07/06 18:53:47	1.31.6.2
***************
*** 45,49 ****
  extern void initxreadlines(void);
  extern void init_weakref(void);
! extern void initspam(void);
  
  /* XXX tim: what's the purpose of ADDMODULE MARKER? */
--- 45,49 ----
  extern void initxreadlines(void);
  extern void init_weakref(void);
! extern void initxxsubtype(void);
  
  /* XXX tim: what's the purpose of ADDMODULE MARKER? */
***************
*** 100,104 ****
  	{"_weakref", init_weakref},
  
! 	{"spam", initspam},
  
  /* XXX tim: what's the purpose of ADDMODULE MARKER? */
--- 100,104 ----
  	{"_weakref", init_weakref},
  
! 	{"xxsubtype", initxxsubtype},
  
  /* XXX tim: what's the purpose of ADDMODULE MARKER? */