diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-05-23 19:34:37 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-05-23 19:34:37 (GMT) |
commit | f178e5c1b75509c5f024ecb84a421b83718f35fe (patch) | |
tree | 31a500abb0ead142ffdd2d6d8ab783e1b23a0240 /PC | |
parent | 70bd199fa492a01be5d26cab905d5dfca3b2e245 (diff) | |
download | cpython-f178e5c1b75509c5f024ecb84a421b83718f35fe.zip cpython-f178e5c1b75509c5f024ecb84a421b83718f35fe.tar.gz cpython-f178e5c1b75509c5f024ecb84a421b83718f35fe.tar.bz2 |
Get the Windows build working again (recover from
`struct` module changes).
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c index 75e1a3c..be11d3f 100644 --- a/PC/config.c +++ b/PC/config.c @@ -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}, |