diff options
| author | Raymond Hettinger <python@rcn.com> | 2003-02-01 00:10:11 +0000 |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2003-02-01 00:10:11 +0000 |
| commit | 96ef8115dd6ed006f5fc44fa1b577db23485224c (patch) | |
| tree | 542890a099c40a37a2be9368d011734301c26516 /PC | |
| parent | 506be287aabe4349956813407dace69dc8d38d36 (diff) | |
| download | cpython-git-96ef8115dd6ed006f5fc44fa1b577db23485224c.tar.gz | |
Move itertools module from the sandbox and into production.
Diffstat (limited to 'PC')
| -rw-r--r-- | PC/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index b20831d3a7..717f267e90 100644 --- a/PC/config.c +++ b/PC/config.c @@ -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}, |
