From: Jack Jansen Date: Fri, 6 Sep 2002 23:33:40 +0000 (+0000) Subject: Enable _AH module. X-Git-Tag: v2.3c1~4179 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=277fc7efce49b2f558eed2b0c900cf625b014b63;p=python Enable _AH module. --- diff --git a/Mac/Build/PythonStandSmall.mcp b/Mac/Build/PythonStandSmall.mcp index d66b07f809..ea9b320226 100644 Binary files a/Mac/Build/PythonStandSmall.mcp and b/Mac/Build/PythonStandSmall.mcp differ diff --git a/Mac/Modules/macconfig.c b/Mac/Modules/macconfig.c index 50eb235ca4..558f136ee0 100644 --- a/Mac/Modules/macconfig.c +++ b/Mac/Modules/macconfig.c @@ -94,6 +94,7 @@ extern void initicglue(); #ifndef USE_CORE_TOOLBOX #define USE_CORE_TOOLBOX #endif +extern void init_AH(); extern void init_App(); extern void init_Fm(); extern void init_Help(); @@ -229,6 +230,7 @@ struct _inittab _PyImport_Inittab[] = { {"_Res", init_Res}, #endif #ifdef USE_TOOLBOX + {"_AH", init_AH}, {"_App", init_App}, {"_Fm", init_Fm}, {"_IBCarbon", init_IBCarbon},