Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fd44062

Browse files
committed
More 3.0 -> 3.1 transistions
1 parent 70e5cab commit fd44062

7 files changed

Lines changed: 20 additions & 20 deletions

File tree

PC/VC6/pythoncore.dsp

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PC/VC6/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and build the projects.
1313
The proper order to build subprojects:
1414

1515
1) pythoncore (this builds the main Python DLL and library files,
16-
python30.{dll, lib} in Release mode)
16+
python31.{dll, lib} in Release mode)
1717

1818
2) python (this builds the main Python executable,
1919
python.exe in Release mode)
@@ -24,7 +24,7 @@ The proper order to build subprojects:
2424
to the subsystems they implement; see SUBPROJECTS below)
2525

2626
When using the Debug setting, the output files have a _d added to
27-
their name: python30_d.dll, python_d.exe, pyexpat_d.pyd, and so on.
27+
their name: python31_d.dll, python_d.exe, pyexpat_d.pyd, and so on.
2828

2929
SUBPROJECTS
3030
-----------

PC/VS7.1/pythoncore.vcproj

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@
3939
<Tool
4040
Name="VCLinkerTool"
4141
AdditionalDependencies="getbuildinfo.o"
42-
OutputFile="./python30.dll"
42+
OutputFile="./python31.dll"
4343
LinkIncremental="1"
4444
SuppressStartupBanner="TRUE"
4545
IgnoreDefaultLibraryNames="libc"
4646
GenerateDebugInformation="TRUE"
47-
ProgramDatabaseFile=".\./python30.pdb"
47+
ProgramDatabaseFile=".\./python31.pdb"
4848
SubSystem="2"
4949
BaseAddress="0x1e000000"
50-
ImportLibrary=".\./python30.lib"
50+
ImportLibrary=".\./python31.lib"
5151
TargetMachine="1"/>
5252
<Tool
5353
Name="VCMIDLTool"/>
@@ -99,15 +99,15 @@
9999
<Tool
100100
Name="VCLinkerTool"
101101
AdditionalDependencies="getbuildinfo.o"
102-
OutputFile="./python30_d.dll"
102+
OutputFile="./python31_d.dll"
103103
LinkIncremental="1"
104104
SuppressStartupBanner="TRUE"
105105
IgnoreDefaultLibraryNames="libc"
106106
GenerateDebugInformation="TRUE"
107-
ProgramDatabaseFile=".\./python30_d.pdb"
107+
ProgramDatabaseFile=".\./python31_d.pdb"
108108
SubSystem="2"
109109
BaseAddress="0x1e000000"
110-
ImportLibrary=".\./python30_d.lib"
110+
ImportLibrary=".\./python31_d.lib"
111111
TargetMachine="1"/>
112112
<Tool
113113
Name="VCMIDLTool"/>
@@ -166,15 +166,15 @@
166166
Name="VCLinkerTool"
167167
AdditionalOptions=" /MACHINE:IA64 /USELINK:MS_SDK"
168168
AdditionalDependencies="getbuildinfo.o"
169-
OutputFile="./python30.dll"
169+
OutputFile="./python31.dll"
170170
LinkIncremental="1"
171171
SuppressStartupBanner="FALSE"
172172
IgnoreDefaultLibraryNames="libc"
173173
GenerateDebugInformation="TRUE"
174-
ProgramDatabaseFile=".\./python30.pdb"
174+
ProgramDatabaseFile=".\./python31.pdb"
175175
SubSystem="2"
176176
BaseAddress="0x1e000000"
177-
ImportLibrary=".\./python30.lib"
177+
ImportLibrary=".\./python31.lib"
178178
TargetMachine="0"/>
179179
<Tool
180180
Name="VCMIDLTool"/>
@@ -233,15 +233,15 @@
233233
Name="VCLinkerTool"
234234
AdditionalOptions=" /MACHINE:AMD64 /USELINK:MS_SDK"
235235
AdditionalDependencies="getbuildinfo.o"
236-
OutputFile="./python30.dll"
236+
OutputFile="./python31.dll"
237237
LinkIncremental="1"
238238
SuppressStartupBanner="TRUE"
239239
IgnoreDefaultLibraryNames="libc"
240240
GenerateDebugInformation="TRUE"
241-
ProgramDatabaseFile=".\./python30.pdb"
241+
ProgramDatabaseFile=".\./python31.pdb"
242242
SubSystem="2"
243243
BaseAddress="0x1e000000"
244-
ImportLibrary=".\./python30.lib"
244+
ImportLibrary=".\./python31.lib"
245245
TargetMachine="0"/>
246246
<Tool
247247
Name="VCMIDLTool"/>

PC/VS8.0/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
/>
3939
<UserMacro
4040
Name="PyDllName"
41-
Value="python30"
41+
Value="python31"
4242
/>
4343
<UserMacro
4444
Name="PythonExe"

PCbuild/kill_python.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ main(int argc, char **argv)
106106
/*
107107
* XXX TODO: if we really wanted to be fancy, we could check the
108108
* modules for all processes (not just the python[_d].exe ones)
109-
* and see if any of our DLLs are loaded (i.e. python30[_d].dll),
109+
* and see if any of our DLLs are loaded (i.e. python31[_d].dll),
110110
* as that would also inhibit our ability to rebuild the solution.
111111
* Not worth loosing sleep over though; for now, a simple check
112112
* for just the python executable should be sufficient.

PCbuild/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
/>
3939
<UserMacro
4040
Name="PyDllName"
41-
Value="python30"
41+
Value="python31"
4242
/>
4343
<UserMacro
4444
Name="PythonExe"

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ NOTE:
3737
running a Python core buildbot test slave; see SUBPROJECTS below)
3838

3939
When using the Debug setting, the output files have a _d added to
40-
their name: python30_d.dll, python_d.exe, parser_d.pyd, and so on. Both
40+
their name: python31_d.dll, python_d.exe, parser_d.pyd, and so on. Both
4141
the build and rt batch files accept a -d option for debug builds.
4242

4343
The 32bit builds end up in the solution folder PCbuild while the x64 builds

0 commit comments

Comments
 (0)