[Python-checkins] python/dist/src/PC config.c,1.35,1.36

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sun, 29 Dec 2002 15:46:42 -0800


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

Modified Files:
	config.c 
Log Message:
Taught the Windows build about _randommodule.c.  This is compiled
into the core DLL, since it's not much code and lots of stuff uses
it (e.g., try getting a tempfile name without it).


Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** config.c	7 Jul 2002 03:59:34 -0000	1.35
--- config.c	29 Dec 2002 23:46:40 -0000	1.36
***************
*** 44,47 ****
--- 44,48 ----
  extern void init_hotshot(void);
  extern void initxxsubtype(void);
+ extern void init_random(void);
  
  /* XXX tim: what's the purpose of ADDMODULE MARKER? */
***************
*** 95,98 ****
--- 96,100 ----
  	{"_weakref", init_weakref},
  	{"_hotshot", init_hotshot},
+ 	{"_random", init_random},
  
  	{"xxsubtype", initxxsubtype},