[Python-checkins] CVS: python/dist/src/Mac/Modules macconfig.c,1.23,1.24

Just van Rossum jvr@users.sourceforge.net
Thu, 21 Jun 2001 07:50:06 -0700


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

Modified Files:
	macconfig.c 
Log Message:
Added support for the gc module (!).

Index: macconfig.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/macconfig.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** macconfig.c	2001/02/27 12:59:49	1.23
--- macconfig.c	2001/06/21 14:50:03	1.24
***************
*** 163,166 ****
--- 163,169 ----
  extern void initpyexpat();
  #endif
+ #ifdef WITH_CYCLE_GC
+ extern void initgc();
+ #endif
  
  extern void initcPickle();
***************
*** 286,289 ****
--- 289,295 ----
  #ifdef USE_PYEXPAT
  	{"pyexpat", initpyexpat},
+ #endif
+ #ifdef WITH_CYCLE_GC
+ 	{"gc", initgc},
  #endif
  	{"cPickle",	initcPickle},