diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-01-02 21:14:37 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-01-02 21:14:37 (GMT) |
commit | 48918f7109f7380065afedb853e9b7a421eff600 (patch) | |
tree | 632fa81caf2d03ca0b58e781f61cd2d1a92a08d7 /PC/config.c | |
parent | 79ef96d68d98966959eb32af24aa82d0735eeb3a (diff) | |
download | cpython-48918f7109f7380065afedb853e9b7a421eff600.zip cpython-48918f7109f7380065afedb853e9b7a421eff600.tar.gz cpython-48918f7109f7380065afedb853e9b7a421eff600.tar.bz2 |
Update build procedure to VC 7.1; make more modules builtin.
Diffstat (limited to 'PC/config.c')
-rw-r--r-- | PC/config.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/PC/config.c b/PC/config.c index d163b79..7bf31b0 100644 --- a/PC/config.c +++ b/PC/config.c @@ -47,6 +47,13 @@ extern void initzipimport(void); extern void init_random(void); extern void inititertools(void); extern void initheapq(void); +extern void init_symtable(void); +extern void initmmap(void); +extern void init_csv(void); +extern void init_sre(void); +extern void initparser(void); +extern void init_winreg(void); +extern void initdatetime(void); /* tools/freeze/makeconfig.py marker for additional "extern" */ /* -- ADDMODULE MARKER 1 -- */ @@ -101,6 +108,13 @@ struct _inittab _PyImport_Inittab[] = { {"_random", init_random}, {"heapq", initheapq}, {"itertools", inititertools}, + {"_symtable", init_symtable}, + {"mmap", initmmap}, + {"_csv", init_csv}, + {"_sre", init_sre}, + {"parser", initparser}, + {"_winreg", init_winreg}, + {"datetime", initdatetime}, {"xxsubtype", initxxsubtype}, {"zipimport", initzipimport}, |