Get the Windows build working again (recover from

`struct` module changes).
This commit is contained in:
Tim Peters 2006-05-23 19:34:37 +00:00
parent 70bd199fa4
commit f178e5c1b7
2 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,6 @@ extern void init_sha(void);
extern void init_sha256(void);
extern void init_sha512(void);
extern void initstrop(void);
extern void initstruct(void);
extern void inittime(void);
extern void initthread(void);
extern void initcStringIO(void);
@ -53,6 +52,7 @@ extern void init_csv(void);
extern void init_sre(void);
extern void initparser(void);
extern void init_winreg(void);
extern void init_struct(void);
extern void initdatetime(void);
extern void initfunctional(void);
extern void initzlib(void);
@ -102,7 +102,6 @@ struct _inittab _PyImport_Inittab[] = {
{"_sha256", init_sha256},
{"_sha512", init_sha512},
{"strop", initstrop},
{"struct", initstruct},
{"time", inittime},
#ifdef WITH_THREAD
{"thread", initthread},
@ -131,6 +130,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_sre", init_sre},
{"parser", initparser},
{"_winreg", init_winreg},
{"_struct", init_struct},
{"datetime", initdatetime},
{"functional", initfunctional},

View File

@ -343,6 +343,9 @@
<File
RelativePath="..\Modules\_bisectmodule.c">
</File>
<File
RelativePath="..\Modules\_struct.c">
</File>
<File
RelativePath="..\Modules\cjkcodecs\_codecs_cn.c">
</File>
@ -745,9 +748,6 @@
<File
RelativePath="..\Python\structmember.c">
</File>
<File
RelativePath="..\Modules\structmodule.c">
</File>
<File
RelativePath="..\Objects\structseq.c">
</File>