Kaydet (Commit) f178e5c1 authored tarafından Tim Peters's avatar Tim Peters

Get the Windows build working again (recover from

`struct` module changes).
üst 70bd199f
......@@ -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},
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment