From: Neil Schemenauer Date: Thu, 30 Aug 2001 00:12:32 +0000 (+0000) Subject: gcmodule is now enabled here X-Git-Tag: v2.2a3~226 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d0e19e1f43aee2b800ea8643bec4ee1d8cf9b96;p=python gcmodule is now enabled here --- diff --git a/Modules/config.c.in b/Modules/config.c.in index 0d5e8b061a..0218c8dfba 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -22,6 +22,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. extern void PyMarshal_Init(void); extern void initimp(void); +extern void initgc(void); struct _inittab _PyImport_Inittab[] = { @@ -39,6 +40,11 @@ struct _inittab _PyImport_Inittab[] = { {"sys", NULL}, {"exceptions", NULL}, +#ifdef WITH_CYCLE_GC + /* This lives in gcmodule.c */ + {"gc", initgc}, +#endif + /* Sentinel */ {0, 0} };