mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Move itertools module from the sandbox and into production.
This commit is contained in:
parent
506be287aa
commit
96ef8115dd
8 changed files with 2027 additions and 0 deletions
|
@ -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},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue