Skip to content

Commit a56138f

Browse files
committed
Merge tag 'v3.7.4rc2' into 3.7
2 parents 024ea21 + 7f193e8 commit a56138f

14 files changed

+103
-27
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 7
2121
#define PY_MICRO_VERSION 4
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
23+
#define PY_RELEASE_SERIAL 2
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.7.4rc1+"
26+
#define PY_VERSION "3.7.4rc2"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Mac/BuildScript/resources/ReadMe.rtf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,14 @@ Both installer variants now come with their own private version of Tcl/Tk 8.6. T
7777

7878
\f1\b \ul \
7979
Other changes\
80+
\
81+
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\partightenfactor0
82+
\cf0 \ulnone CHANGED in 3.7.4:
83+
\f0\b0 SQLite has been updated from 3.22.0 to 3.28.0
84+
\f1\b \ul \ulc0 \
85+
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
8086
81-
\f0\b0 \ulnone \
87+
\f0\b0 \cf0 \ulnone \
8288
For other changes in this release, see the
8389
\f2\i What's new
8490
\f0\i0 section in the {\field{\*\fldinst{HYPERLINK "https://www.python.org/doc/"}}{\fldrslt Documentation Set}} for this release and its

Mac/BuildScript/resources/Welcome.rtf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ At the end of this install, click on
2424
\
2525

2626
\f1\b NEW in 3.7.0:
27-
\f0\b0 two installer variants (10.9+ 64-bit-only, 10.6+ 64-/32-bit), built-in Tcl/Tk 8.6 support (no additional third-party downloads!), OpenSSL 1.1.0, and more!\
27+
\f0\b0 two installer variants (10.9+ 64-bit-only, 10.6+ 64-/32-bit), built-in Tcl/Tk 8.6 support (no additional third-party downloads!), OpenSSL 1.1, and more!\
2828

2929
\f1\b \
3030
CHANGED in 3.7.4:
31-
\f0\b0 OpenSSL 1.1.1, 10.6+ 64-/32-bit installer variant deprecated\
31+
\f0\b0 OpenSSL 1.1.1, SQLite 3.28.0, 10.6+ 64-/32-bit installer variant deprecated\
3232
}

Misc/NEWS.d/3.7.4rc2.rst

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
.. bpo: 37463
2+
.. date: 2019-07-01-08-46-14
3+
.. nonce: 1CHwjE
4+
.. release date: 2019-07-02
5+
.. section: Security
6+
7+
ssl.match_hostname() no longer accepts IPv4 addresses with additional text
8+
after the address and only quad-dotted notation without trailing
9+
whitespaces. Some inet_aton() implementations ignore whitespace and all data
10+
after whitespace, e.g. '127.0.0.1 whatever'.
11+
12+
..
13+
14+
.. bpo: 24214
15+
.. date: 2019-06-22-12-45-20
16+
.. nonce: hIiHeD
17+
.. section: Core and Builtins
18+
19+
Improved support of the surrogatepass error handler in the UTF-8 and UTF-16
20+
incremental decoders.
21+
22+
..
23+
24+
.. bpo: 37440
25+
.. date: 2019-06-28-16-40-17
26+
.. nonce: t3wX-N
27+
.. section: Library
28+
29+
http.client now enables TLS 1.3 post-handshake authentication for default
30+
context or if a cert_file is passed to HTTPSConnection.
31+
32+
..
33+
34+
.. bpo: 37437
35+
.. date: 2019-06-27-20-33-50
36+
.. nonce: du39_A
37+
.. section: Library
38+
39+
Update vendorized expat version to 2.2.7.
40+
41+
..
42+
43+
.. bpo: 37428
44+
.. date: 2019-06-27-13-27-02
45+
.. nonce: _wcwUd
46+
.. section: Library
47+
48+
SSLContext.post_handshake_auth = True no longer sets
49+
SSL_VERIFY_POST_HANDSHAKE verify flag for client connections. Although the
50+
option is documented as ignored for clients, OpenSSL implicitly enables cert
51+
chain validation when the flag is set.
52+
53+
..
54+
55+
.. bpo: 32627
56+
.. date: 2019-02-03-19-13-08
57+
.. nonce: b68f64
58+
.. section: Library
59+
60+
Fix compile error when ``_uuid`` headers conflicting included.
61+
62+
..
63+
64+
.. bpo: 37369
65+
.. date: 2019-06-28-08-09-08
66+
.. nonce: 1iVpxq
67+
.. section: Windows
68+
69+
Fixes path for :data:`sys.executable` when running from the Microsoft Store.
70+
71+
..
72+
73+
.. bpo: 35360
74+
.. date: 2019-06-18-09-05-08
75+
.. nonce: tdqSmo
76+
.. section: Windows
77+
78+
Update Windows builds to use SQLite 3.28.0.
79+
80+
..
81+
82+
.. bpo: 34602
83+
.. date: 2019-07-02-01-06-47
84+
.. nonce: 10d4wl
85+
.. section: macOS
86+
87+
Avoid test suite failures on macOS by no longer calling resource.setrlimit
88+
to increase the process stack size limit at runtime. The runtime change is
89+
no longer needed since the interpreter is being built with a larger default
90+
stack size.

Misc/NEWS.d/next/Core and Builtins/2019-06-22-12-45-20.bpo-24214.hIiHeD.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2019-02-03-19-13-08.bpo-32627.b68f64.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Library/2019-06-27-13-27-02.bpo-37428._wcwUd.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

Misc/NEWS.d/next/Library/2019-06-27-20-33-50.bpo-37437.du39_A.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Library/2019-06-28-16-40-17.bpo-37440.t3wX-N.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

Misc/NEWS.d/next/Security/2019-07-01-08-46-14.bpo-37463.1CHwjE.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

Misc/NEWS.d/next/Windows/2019-06-18-09-05-08.bpo-35360.tdqSmo.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/Windows/2019-06-28-08-09-08.bpo-37369.1iVpxq.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

Misc/NEWS.d/next/macOS/2019-07-02-01-06-47.bpo-34602.10d4wl.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.7.4 candidate 1+
2-
=========================================
1+
This is Python version 3.7.4 candidate 2
2+
========================================
33

44
.. image:: https://travis-ci.org/python/cpython.svg?branch=master
55
:alt: CPython build status on Travis CI

0 commit comments

Comments
 (0)