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

Skip to content

Commit fa2c61a

Browse files
committed
More automated version replacement.
1 parent 3ebb6b3 commit fa2c61a

21 files changed

Lines changed: 864 additions & 864 deletions

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
@@ -12,7 +12,7 @@ and build the projects.
1212
The proper order to build subprojects:
1313

1414
1) pythoncore (this builds the main Python DLL and library files,
15-
python32.{dll, lib} in Release mode)
15+
python33.{dll, lib} in Release mode)
1616

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

2525
When using the Debug setting, the output files have a _d added to
26-
their name: python32_d.dll, python_d.exe, pyexpat_d.pyd, and so on.
26+
their name: python33_d.dll, python_d.exe, pyexpat_d.pyd, and so on.
2727

2828
SUBPROJECTS
2929
-----------

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="./python32.dll"
42+
OutputFile="./python33.dll"
4343
LinkIncremental="1"
4444
SuppressStartupBanner="TRUE"
4545
IgnoreDefaultLibraryNames="libc"
4646
GenerateDebugInformation="TRUE"
47-
ProgramDatabaseFile=".\./python32.pdb"
47+
ProgramDatabaseFile=".\./python33.pdb"
4848
SubSystem="2"
4949
BaseAddress="0x1e000000"
50-
ImportLibrary=".\./python32.lib"
50+
ImportLibrary=".\./python33.lib"
5151
TargetMachine="1"/>
5252
<Tool
5353
Name="VCMIDLTool"/>
@@ -99,15 +99,15 @@
9999
<Tool
100100
Name="VCLinkerTool"
101101
AdditionalDependencies="getbuildinfo.o"
102-
OutputFile="./python32_d.dll"
102+
OutputFile="./python33_d.dll"
103103
LinkIncremental="1"
104104
SuppressStartupBanner="TRUE"
105105
IgnoreDefaultLibraryNames="libc"
106106
GenerateDebugInformation="TRUE"
107-
ProgramDatabaseFile=".\./python32_d.pdb"
107+
ProgramDatabaseFile=".\./python33_d.pdb"
108108
SubSystem="2"
109109
BaseAddress="0x1e000000"
110-
ImportLibrary=".\./python32_d.lib"
110+
ImportLibrary=".\./python33_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="./python32.dll"
169+
OutputFile="./python33.dll"
170170
LinkIncremental="1"
171171
SuppressStartupBanner="FALSE"
172172
IgnoreDefaultLibraryNames="libc"
173173
GenerateDebugInformation="TRUE"
174-
ProgramDatabaseFile=".\./python32.pdb"
174+
ProgramDatabaseFile=".\./python33.pdb"
175175
SubSystem="2"
176176
BaseAddress="0x1e000000"
177-
ImportLibrary=".\./python32.lib"
177+
ImportLibrary=".\./python33.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="./python32.dll"
236+
OutputFile="./python33.dll"
237237
LinkIncremental="1"
238238
SuppressStartupBanner="TRUE"
239239
IgnoreDefaultLibraryNames="libc"
240240
GenerateDebugInformation="TRUE"
241-
ProgramDatabaseFile=".\./python32.pdb"
241+
ProgramDatabaseFile=".\./python33.pdb"
242242
SubSystem="2"
243243
BaseAddress="0x1e000000"
244-
ImportLibrary=".\./python32.lib"
244+
ImportLibrary=".\./python33.lib"
245245
TargetMachine="0"/>
246246
<Tool
247247
Name="VCMIDLTool"/>

PC/VS7.1/readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ the "Standard" toolbar"), and build the projects.
1212
The proper order to build subprojects:
1313

1414
1) pythoncore (this builds the main Python DLL and library files,
15-
python26.{dll, lib} in Release mode)
15+
python33.{dll, lib} in Release mode)
1616
NOTE: in previous releases, this subproject was
1717
named after the release number, e.g. python20.
1818

@@ -26,7 +26,7 @@ The proper order to build subprojects:
2626
test slave; see SUBPROJECTS below)
2727

2828
When using the Debug setting, the output files have a _d added to
29-
their name: python26_d.dll, python_d.exe, parser_d.pyd, and so on.
29+
their name: python33_d.dll, python_d.exe, parser_d.pyd, and so on.
3030

3131
SUBPROJECTS
3232
-----------

PC/VS8.0/build_ssl.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
if not defined HOST_PYTHON (
33
if %1 EQU Debug (
44
set HOST_PYTHON=python_d.exe
5-
if not exist python32_d.dll exit 1
5+
if not exist python33_d.dll exit 1
66
) ELSE (
77
set HOST_PYTHON=python.exe
8-
if not exist python32.dll exit 1
8+
if not exist python33.dll exit 1
99
)
1010
)
1111
%HOST_PYTHON% build_ssl.py %1 %2 %3

PC/VS8.0/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. python32[_d].dll),
109+
* and see if any of our DLLs are loaded (i.e. python33[_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.

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="python32"
41+
Value="python33"
4242
/>
4343
<UserMacro
4444
Name="PythonExe"

PC/example_nt/example.vcproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<Tool
4040
Name="VCLinkerTool"
4141
AdditionalOptions="/export:initexample"
42-
AdditionalDependencies="odbc32.lib odbccp32.lib python26.lib"
42+
AdditionalDependencies="odbc32.lib odbccp32.lib python33.lib"
4343
OutputFile=".\Release/example.pyd"
4444
LinkIncremental="1"
4545
SuppressStartupBanner="TRUE"
@@ -105,7 +105,7 @@
105105
<Tool
106106
Name="VCLinkerTool"
107107
AdditionalOptions="/export:initexample"
108-
AdditionalDependencies="odbc32.lib odbccp32.lib python26_d.lib"
108+
AdditionalDependencies="odbc32.lib odbccp32.lib python33_d.lib"
109109
OutputFile=".\Debug/example_d.pyd"
110110
LinkIncremental="1"
111111
SuppressStartupBanner="TRUE"

PC/os2emx/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ $(OUT)%$O: %.c
237237

238238
# Output file names
239239
PYTHON_VER= 2.6
240-
PYTHON_LIB= python26
240+
PYTHON_LIB= python33
241241
PYTHON.LIB= $(PYTHON_LIB)_s$A
242242
PYTHON.IMPLIB= $(PYTHON_LIB)$A
243243
ifeq ($(EXEOMF),yes)

PC/os2emx/README.os2emx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ Procedure
305305
to be installed in a directory other than the PYTHONHOME directory, set
306306
the value of the Makefile variable EXE_DIR to the appropriate directory.
307307

308-
3. If you wish the Python core DLL (python26.dll) to be installed in a
308+
3. If you wish the Python core DLL (python33.dll) to be installed in a
309309
directory other than the directory in which the Python executables are
310310
installed (by default, the PYTHONHOME directory), set the value of the
311311
Makefile variable DLL_DIR to the appropriate directory. This DLL must

0 commit comments

Comments
 (0)