From: Jack Jansen Date: Wed, 5 Feb 2003 13:36:50 +0000 (+0000) Subject: Added itertools module. X-Git-Tag: v2.3c1~2030 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d4f06a73a4b68a2aa6663d3bb0bf83cf459262d;p=python Added itertools module. --- diff --git a/Mac/Build/PythonCore.mcp b/Mac/Build/PythonCore.mcp index f1f3fd3678..592253d18a 100644 Binary files a/Mac/Build/PythonCore.mcp and b/Mac/Build/PythonCore.mcp differ diff --git a/Mac/Build/PythonStandSmall.mcp b/Mac/Build/PythonStandSmall.mcp index 6257fbb80b..538815d4f4 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 31f1d831c1..7a6d3d9006 100644 --- a/Mac/Modules/macconfig.c +++ b/Mac/Modules/macconfig.c @@ -177,6 +177,7 @@ extern void init_locale(); extern void init_sre(); extern void initxreadlines(); extern void initzipimport(); +extern void inititertools(); /* -- ADDMODULE MARKER 1 -- */ extern void PyMarshal_Init(); @@ -301,6 +302,7 @@ struct _inittab _PyImport_Inittab[] = { {"_sre", init_sre}, {"xreadlines", initxreadlines}, {"zipimport", initzipimport}, + {"itertools", inititertools}, /* -- ADDMODULE MARKER 2 -- */ /* This module "lives in" with marshal.c */