Move itertools module from the sandbox and into production.

This commit is contained in:
Raymond Hettinger 2003-02-01 00:10:11 +00:00
parent 506be287aa
commit 96ef8115dd
8 changed files with 2027 additions and 0 deletions

View file

@ -45,6 +45,7 @@ extern void init_hotshot(void);
extern void initxxsubtype(void);
extern void initzipimport(void);
extern void init_random(void);
extern void inititertools(void);
/* XXX tim: what's the purpose of ADDMODULE MARKER? */
/* -- ADDMODULE MARKER 1 -- */
@ -97,6 +98,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_weakref", init_weakref},
{"_hotshot", init_hotshot},
{"_random", init_random},
{"itertools", inititertools},
{"xxsubtype", initxxsubtype},
{"zipimport", initzipimport},