Make svn:eol-style's more consistent · pythoncapi/cpython@7f1e174 · GitHub
Skip to content

Commit 7f1e174

Browse files
committed
Make svn:eol-style's more consistent
1 parent 2ec8cbc commit 7f1e174

22 files changed

Lines changed: 513 additions & 513 deletions

Doc/make.bat

Lines changed: 59 additions & 59 deletions

PC/VS7.1/build_ssl.bat

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
if "%1" == "ReleaseAMD64" call "%MSSdk%\SetEnv" /XP64 /RETAIL
2-
3-
@echo off
4-
if not defined HOST_PYTHON (
5-
if %1 EQU Debug (
6-
set HOST_PYTHON=python_d.exe
7-
) ELSE (
8-
set HOST_PYTHON=python.exe
9-
)
10-
)
11-
%HOST_PYTHON% build_ssl.py %1 %2
12-
1+
if "%1" == "ReleaseAMD64" call "%MSSdk%\SetEnv" /XP64 /RETAIL
2+
3+
@echo off
4+
if not defined HOST_PYTHON (
5+
if %1 EQU Debug (
6+
set HOST_PYTHON=python_d.exe
7+
) ELSE (
8+
set HOST_PYTHON=python.exe
9+
)
10+
)
11+
%HOST_PYTHON% build_ssl.py %1 %2
12+

PC/VS8.0/build.bat

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
@echo off
2-
rem A batch program to build or rebuild a particular configuration.
3-
rem just for convenience.
4-
5-
setlocal
6-
set platf=Win32
7-
set conf=Release
8-
set build=/build
9-
10-
:CheckOpts
11-
if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
12-
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
13-
if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts
14-
15-
set cmd=devenv pcbuild.sln %build% "%conf%|%platf%"
16-
echo %cmd%
17-
%cmd%
1+
@echo off
2+
rem A batch program to build or rebuild a particular configuration.
3+
rem just for convenience.
4+
5+
setlocal
6+
set platf=Win32
7+
set conf=Release
8+
set build=/build
9+
10+
:CheckOpts
11+
if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts
12+
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
13+
if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts
14+
15+
set cmd=devenv pcbuild.sln %build% "%conf%|%platf%"
16+
echo %cmd%
17+
%cmd%

PC/VS8.0/build_env.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@%comspec% /k env.bat %*
1+
@%comspec% /k env.bat %*

PC/VS8.0/build_pgo.bat

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
@echo off
2-
rem A batch program to build PGO (Profile guided optimization) by first
3-
rem building instrumented binaries, then running the testsuite, and
4-
rem finally building the optimized code.
5-
rem Note, after the first instrumented run, one can just keep on
6-
rem building the PGUpdate configuration while developing.
7-
8-
setlocal
9-
set platf=Win32
10-
11-
rem use the performance testsuite. This is quick and simple
12-
set job1=..\..\tools\pybench\pybench.py -n 1 -C 1 --with-gc
13-
set path1=..\..\tools\pybench
14-
15-
rem or the whole testsuite for more thorough testing
16-
set job2=..\..\lib\test\regrtest.py
17-
set path2=..\..\lib
18-
19-
set job=%job1%
20-
set clrpath=%path1%
21-
22-
:CheckOpts
23-
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
24-
if "%1"=="-2" (set job=%job2%) & (set clrpath=%path2%) & shift & goto CheckOpts
25-
26-
set PGI=%platf%-pgi
27-
set PGO=%platf%-pgo
28-
29-
@echo on
30-
rem build the instrumented version
31-
call build -p %platf% -c PGInstrument
32-
33-
rem remove .pyc files, .pgc files and execute the job
34-
%PGI%\python.exe rmpyc.py %clrpath%
35-
del %PGI%\*.pgc
36-
%PGI%\python.exe %job%
37-
38-
rem finally build the optimized version
39-
if exist %PGO% del /s /q %PGO%
40-
call build -p %platf% -c PGUpdate
41-
1+
@echo off
2+
rem A batch program to build PGO (Profile guided optimization) by first
3+
rem building instrumented binaries, then running the testsuite, and
4+
rem finally building the optimized code.
5+
rem Note, after the first instrumented run, one can just keep on
6+
rem building the PGUpdate configuration while developing.
7+
8+
setlocal
9+
set platf=Win32
10+
11+
rem use the performance testsuite. This is quick and simple
12+
set job1=..\..\tools\pybench\pybench.py -n 1 -C 1 --with-gc
13+
set path1=..\..\tools\pybench
14+
15+
rem or the whole testsuite for more thorough testing
16+
set job2=..\..\lib\test\regrtest.py
17+
set path2=..\..\lib
18+
19+
set job=%job1%
20+
set clrpath=%path1%
21+
22+
:CheckOpts
23+
if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts
24+
if "%1"=="-2" (set job=%job2%) & (set clrpath=%path2%) & shift & goto CheckOpts
25+
26+
set PGI=%platf%-pgi
27+
set PGO=%platf%-pgo
28+
29+
@echo on
30+
rem build the instrumented version
31+
call build -p %platf% -c PGInstrument
32+
33+
rem remove .pyc files, .pgc files and execute the job
34+
%PGI%\python.exe rmpyc.py %clrpath%
35+
del %PGI%\*.pgc
36+
%PGI%\python.exe %job%
37+
38+
rem finally build the optimized version
39+
if exist %PGO% del /s /q %PGO%
40+
call build -p %platf% -c PGUpdate
41+

PC/VS8.0/build_ssl.bat

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
@echo off
2-
if not defined HOST_PYTHON (
3-
if %1 EQU Debug (
4-
set HOST_PYTHON=python_d.exe
5-
if not exist python33_d.dll exit 1
6-
) ELSE (
7-
set HOST_PYTHON=python.exe
8-
if not exist python33.dll exit 1
9-
)
10-
)
11-
%HOST_PYTHON% build_ssl.py %1 %2 %3
12-
1+
@echo off
2+
if not defined HOST_PYTHON (
3+
if %1 EQU Debug (
4+
set HOST_PYTHON=python_d.exe
5+
if not exist python33_d.dll exit 1
6+
) ELSE (
7+
set HOST_PYTHON=python.exe
8+
if not exist python33.dll exit 1
9+
)
10+
)
11+
%HOST_PYTHON% build_ssl.py %1 %2 %3
12+

PC/VS8.0/env.bat

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
@echo off
2-
set VS8=%ProgramFiles%\Microsoft Visual Studio 8
3-
echo Build environments: x86, ia64, amd64, x86_amd64, x86_ia64
4-
echo.
5-
call "%VS8%\VC\vcvarsall.bat" %1
1+
@echo off
2+
set VS8=%ProgramFiles%\Microsoft Visual Studio 8
3+
echo Build environments: x86, ia64, amd64, x86_amd64, x86_ia64
4+
echo.
5+
call "%VS8%\VC\vcvarsall.bat" %1

PC/VS8.0/idle.bat

Lines changed: 15 additions & 15 deletions

0 commit comments

Comments
 (0)