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

Skip to content

Commit 3266a8f

Browse files
committed
Issue #21671: Merge with 3.4
2 parents cc568b1 + 7d55da4 commit 3266a8f

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

Misc/NEWS

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,8 +484,6 @@ Build
484484

485485
- Issue #21037: Add a build option to enable AddressSanitizer support.
486486

487-
- The Windows build now includes OpenSSL 1.0.1g
488-
489487
- Issue #19962: The Windows build process now creates "python.bat" in the
490488
root of the source tree, which passes all arguments through to the most
491489
recently built interpreter.
@@ -607,6 +605,12 @@ Tools/Demos
607605
- Issue #20535: PYTHONWARNING no longer affects the run_tests.py script.
608606
Patch by Arfrever Frehtes Taifersar Arahesis.
609607

608+
Windows
609+
-------
610+
611+
- Issue #21671, CVE-2014-0224: The bundled version of OpenSSL has been
612+
updated to 1.0.1h.
613+
610614

611615
What's New in Python 3.4.0?
612616
===========================

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.1g</opensslDir>
23+
<opensslDir>$(externalsDir)\openssl-1.0.1h</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.1g of the OpenSSL secure sockets
171+
Python wrapper for version 1.0.1h 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
@@ -10,7 +10,7 @@ cd ..
1010
@rem if exist tcl-8.6.1.0 rd /s/q tcl-8.6.1.0
1111
@rem if exist tk-8.6.1.0 rd /s/q tk-8.6.1.0
1212
@rem if exist db-4.4.20 rd /s/q db-4.4.20
13-
@rem if exist openssl-1.0.1e rd /s/q openssl-1.0.1g
13+
@rem if exist openssl-1.0.1h rd /s/q openssl-1.0.1h
1414
@rem if exist sqlite-3.7.12 rd /s/q sqlite-3.7.12
1515

1616
@rem bzip
@@ -20,9 +20,9 @@ if not exist bzip2-1.0.6 (
2020
)
2121

2222
@rem OpenSSL
23-
if not exist openssl-1.0.1g (
24-
rd /s/q openssl-1.0.1e
25-
svn export http://svn.python.org/projects/external/openssl-1.0.1g
23+
if not exist openssl-1.0.1h (
24+
rd /s/q openssl-1.0.1g
25+
svn export http://svn.python.org/projects/external/openssl-1.0.1h
2626
)
2727

2828
@rem tcl/tk/tix

0 commit comments

Comments
 (0)