[Python-checkins] CVS: python/dist/src/Modules config.c.in,1.74,1.75

Neil Schemenauer nascheme@users.sourceforge.net
Wed, 29 Aug 2001 17:12:34 -0700


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

Modified Files:
	config.c.in 
Log Message:
gcmodule is now enabled here


Index: config.c.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/config.c.in,v
retrieving revision 1.74
retrieving revision 1.75
diff -C2 -d -r1.74 -r1.75
*** config.c.in	2001/08/02 04:15:00	1.74
--- config.c.in	2001/08/30 00:12:32	1.75
***************
*** 23,26 ****
--- 23,27 ----
  extern void PyMarshal_Init(void);
  extern void initimp(void);
+ extern void initgc(void);
  
  struct _inittab _PyImport_Inittab[] = {
***************
*** 39,42 ****
--- 40,48 ----
  	{"sys", NULL},
  	{"exceptions", NULL},
+ 
+ #ifdef WITH_CYCLE_GC
+ 	/* This lives in gcmodule.c */
+ 	{"gc", initgc},
+ #endif
  
  	/* Sentinel */