Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f178e5c1
Commit
f178e5c1
authored
May 23, 2006
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get the Windows build working again (recover from
`struct` module changes).
parent
70bd199f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
PC/config.c
PC/config.c
+2
-2
PCbuild/pythoncore.vcproj
PCbuild/pythoncore.vcproj
+3
-3
No files found.
PC/config.c
View file @
f178e5c1
...
...
@@ -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
},
...
...
PCbuild/pythoncore.vcproj
View file @
f178e5c1
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment