From: Jack Jansen Date: Wed, 1 Jul 1998 15:48:54 +0000 (+0000) Subject: The init routine for MacOS had a non-standard name. Changed to X-Git-Tag: v1.5.2a1~362 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d674163a0b02dc03fc2acc60451980820c3b54aa;p=python The init routine for MacOS had a non-standard name. Changed to initMacOS(). --- diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index 7beb9094b4..46a127ec23 100644 --- a/Mac/Modules/config.c +++ b/Mac/Modules/config.c @@ -37,7 +37,7 @@ extern void initcmath(); #endif extern void initparser(); extern void initmac(); -extern void MacOS_Init(); +extern void initMacOS(); extern void initregex(); extern void initstrop(); extern void initstruct(); @@ -169,7 +169,7 @@ struct _inittab _PyImport_Inittab[] = { #endif {"parser", initparser}, {"mac", initmac}, - {"MacOS", MacOS_Init}, + {"MacOS", initMacOS}, {"regex", initregex}, {"strop", initstrop}, {"struct", initstruct}, diff --git a/Mac/Modules/macosmodule.c b/Mac/Modules/macosmodule.c index a17300dec5..68f9b48c9d 100644 --- a/Mac/Modules/macosmodule.c +++ b/Mac/Modules/macosmodule.c @@ -707,7 +707,7 @@ static PyMethodDef MacOS_Methods[] = { void -MacOS_Init() +initMacOS() { PyObject *m, *d;