mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Added itertools module.
This commit is contained in:
parent
b86a2e8036
commit
8d4f06a73a
3 changed files with 2 additions and 0 deletions
Binary file not shown.
Binary file not shown.
|
@ -177,6 +177,7 @@ extern void init_locale();
|
||||||
extern void init_sre();
|
extern void init_sre();
|
||||||
extern void initxreadlines();
|
extern void initxreadlines();
|
||||||
extern void initzipimport();
|
extern void initzipimport();
|
||||||
|
extern void inititertools();
|
||||||
/* -- ADDMODULE MARKER 1 -- */
|
/* -- ADDMODULE MARKER 1 -- */
|
||||||
|
|
||||||
extern void PyMarshal_Init();
|
extern void PyMarshal_Init();
|
||||||
|
@ -301,6 +302,7 @@ struct _inittab _PyImport_Inittab[] = {
|
||||||
{"_sre", init_sre},
|
{"_sre", init_sre},
|
||||||
{"xreadlines", initxreadlines},
|
{"xreadlines", initxreadlines},
|
||||||
{"zipimport", initzipimport},
|
{"zipimport", initzipimport},
|
||||||
|
{"itertools", inititertools},
|
||||||
/* -- ADDMODULE MARKER 2 -- */
|
/* -- ADDMODULE MARKER 2 -- */
|
||||||
|
|
||||||
/* This module "lives in" with marshal.c */
|
/* This module "lives in" with marshal.c */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue