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

Skip to content

Commit b9e71d4

Browse files
committed
Merge with 3.4
2 parents 161d695 + 3d5c9e2 commit b9e71d4

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,8 @@ IDLE
325325
Build
326326
-----
327327

328+
- The Windows build now includes OpenSSL 1.0.1g
329+
328330
- Issue #19962: The Windows build process now creates "python.bat" in the
329331
root of the source tree, which passes all arguments through to the most
330332
recently built interpreter.

PC/VS9.0/pyproject.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
/>
6363
<UserMacro
6464
Name="opensslDir"
65-
Value="$(externalsDir)\openssl-1.0.1e"
65+
Value="$(externalsDir)\openssl-1.0.1g"
6666
/>
6767
<UserMacro
6868
Name="tcltkDir"

PCbuild/pyproject.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<sqlite3Dir>$(externalsDir)\sqlite-3.8.3.1</sqlite3Dir>
2121
<bz2Dir>$(externalsDir)\bzip2-1.0.6</bz2Dir>
2222
<lzmaDir>$(externalsDir)\xz-5.0.5</lzmaDir>
23-
<opensslDir>$(externalsDir)\openssl-1.0.1e</opensslDir>
23+
<opensslDir>$(externalsDir)\openssl-1.0.1g</opensslDir>
2424
<tclDir>$(externalsDir)\tcl-8.6.1.0</tclDir>
2525
<tkDir>$(externalsDir)\tk-8.6.1.0</tkDir>
2626
<tixDir>$(externalsDir)\tix-8.4.3.4</tixDir>

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ _lzma
168168
Homepage:
169169
http://tukaani.org/xz/
170170
_ssl
171-
Python wrapper for version 1.0.1e of the OpenSSL secure sockets
171+
Python wrapper for version 1.0.1g of the OpenSSL secure sockets
172172
library, which is built by ssl.vcxproj
173173
Homepage:
174174
http://www.openssl.org/

Tools/buildbot/external-common.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cd ..
1414
@rem if exist tk8.4.16 rd /s/q tk8.4.16
1515
@rem if exist tk-8.4.18.1 rd /s/q tk-8.4.18.1
1616
@rem if exist db-4.4.20 rd /s/q db-4.4.20
17-
@rem if exist openssl-1.0.1e rd /s/q openssl-1.0.1e
17+
@rem if exist openssl-1.0.1e rd /s/q openssl-1.0.1g
1818
@rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12
1919

2020
@rem bzip
@@ -24,9 +24,9 @@ if not exist bzip2-1.0.6 (
2424
)
2525

2626
@rem OpenSSL
27-
if not exist openssl-1.0.1e (
28-
rd /s/q openssl-1.0.1d
29-
svn export http://svn.python.org/projects/external/openssl-1.0.1e
27+
if not exist openssl-1.0.1g (
28+
rd /s/q openssl-1.0.1e
29+
svn export http://svn.python.org/projects/external/openssl-1.0.1g
3030
)
3131

3232
@rem tcl/tk/tix

0 commit comments

Comments
 (0)