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

Tim Peters tim_one@users.sourceforge.net
Thu, 01 Feb 2001 16:07:09 -0800


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

Modified Files:
	config.c 
Log Message:
Teach Windows build about the _weakref module.


Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -r1.30 -r1.31
*** config.c	2001/01/09 23:26:39	1.30
--- config.c	2001/02/02 00:07:07	1.31
***************
*** 44,47 ****
--- 44,48 ----
  extern void init_codecs(void);
  extern void initxreadlines(void);
+ extern void init_weakref(void);
  
  /* XXX tim: what's the purpose of ADDMODULE MARKER? */
***************
*** 96,99 ****
--- 97,101 ----
          {"_codecs", init_codecs},
  	{"xreadlines", initxreadlines},
+ 	{"_weakref", init_weakref},
  
  /* XXX tim: what's the purpose of ADDMODULE MARKER? */