summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2016-09-12 21:29:04 (GMT)
committerNed Deily <nad@python.org>2016-09-12 21:29:04 (GMT)
commit4829bc66194f40ca6110610c6357b36eb910a51d (patch)
treefbf670f63169ee2e437f114b7920b00dbd8da3b3 /PCbuild
parent3c70a992be9db7c69a055e523053426d3c655b39 (diff)
downloadcpython-4829bc66194f40ca6110610c6357b36eb910a51d.zip
cpython-4829bc66194f40ca6110610c6357b36eb910a51d.tar.gz
cpython-4829bc66194f40ca6110610c6357b36eb910a51d.tar.bz2
Bump to 3.7.0a0
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/prepare_ssl.bat4
-rw-r--r--PCbuild/readme.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/prepare_ssl.bat b/PCbuild/prepare_ssl.bat
index 2f41ae8..33f878e 100644
--- a/PCbuild/prepare_ssl.bat
+++ b/PCbuild/prepare_ssl.bat
@@ -3,10 +3,10 @@ if not defined HOST_PYTHON (
if "%1" EQU "Debug" (
shift
set HOST_PYTHON=python_d.exe
- if not exist python36_d.dll exit 1
+ if not exist python37_d.dll exit 1
) ELSE (
set HOST_PYTHON=python.exe
- if not exist python36.dll exit 1
+ if not exist python37.dll exit 1
)
)
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt
index 34c2efe..f3a8ba6 100644
--- a/PCbuild/readme.txt
+++ b/PCbuild/readme.txt
@@ -48,7 +48,7 @@ Debug
Used to build Python with extra debugging capabilities, equivalent
to using ./configure --with-pydebug on UNIX. All binaries built
using this configuration have "_d" added to their name:
- python36_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
+ python37_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
build and rt (run test) batch files in this directory accept a -d
option for debug builds. If you are building Python to help with
development of CPython, you will most likely use this configuration.