Skip to content

Commit 13c9474

Browse files
committed
3.7.9
1 parent a0ad829 commit 13c9474

13 files changed

+95
-19
lines changed

Include/patchlevel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 7
21-
#define PY_MICRO_VERSION 8
21+
#define PY_MICRO_VERSION 9
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.7.8+"
26+
#define PY_VERSION "3.7.9"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Jun 17 04:38:18 2020
2+
# Autogenerated by Sphinx on Sat Aug 15 01:12:49 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.7.9.rst

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
.. bpo: 41304
2+
.. date: 2020-07-15-20-15-08
3+
.. nonce: vNEeYA
4+
.. release date: 2020-08-15
5+
.. section: Security
6+
7+
Fixes `python3x._pth` being ignored on Windows, caused by the fix for
8+
:issue:`29778` (CVE-2020-15801).
9+
10+
..
11+
12+
.. bpo: 29778
13+
.. date: 2020-07-03-17-21-37
14+
.. nonce: cR_fGS
15+
.. section: Security
16+
17+
Ensure :file:`python3.dll` is loaded from correct locations when Python is
18+
embedded (CVE-2020-15523).
19+
20+
..
21+
22+
.. bpo: 41004
23+
.. date: 2020-06-29-16-02-29
24+
.. nonce: ovF0KZ
25+
.. section: Security
26+
27+
CVE-2020-14422: The __hash__() methods of ipaddress.IPv4Interface and
28+
ipaddress.IPv6Interface incorrectly generated constant hash values of 32 and
29+
128 respectively. This resulted in always causing hash collisions. The fix
30+
uses hash() to generate hash values for the tuple of (address, mask length,
31+
network address).
32+
33+
..
34+
35+
.. bpo: 39603
36+
.. date: 2020-02-12-14-17-39
37+
.. nonce: Gt3RSg
38+
.. section: Security
39+
40+
Prevent http header injection by rejecting control characters in
41+
http.client.putrequest(...).
42+
43+
..
44+
45+
.. bpo: 33786
46+
.. date: 2018-06-06-23-24-40
47+
.. nonce: lBvT8z
48+
.. section: Core and Builtins
49+
50+
Fix asynchronous generators to handle GeneratorExit in athrow() correctly
51+
52+
..
53+
54+
.. bpo: 41288
55+
.. date: 2020-07-13-15-06-35
56+
.. nonce: 8mn5P-
57+
.. section: Library
58+
59+
Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now
60+
UnpicklingError instead of crashing.
61+
62+
..
63+
64+
.. bpo: 39017
65+
.. date: 2020-07-12-22-16-58
66+
.. nonce: x3Cg-9
67+
.. section: Library
68+
69+
Avoid infinite loop when reading specially crafted TAR files using the
70+
tarfile module (CVE-2019-20907).
71+
72+
..
73+
74+
.. bpo: 41235
75+
.. date: 2020-07-07-21-56-26
76+
.. nonce: H2csMU
77+
.. section: Library
78+
79+
Fix the error handling in :meth:`ssl.SSLContext.load_dh_params`.
80+
81+
..
82+
83+
.. bpo: 41100
84+
.. date: 2020-08-15-00-33-27
85+
.. nonce: AksBg1
86+
.. section: macOS
87+
88+
Additional fixes for testing on macOS 11 Big Sur Intel. Note: macOS 11 is
89+
not yet released, this release of Python is not fully supported on 11.0, and
90+
not all tests pass.

Misc/NEWS.d/next/Core and Builtins/2018-06-06-23-24-40.bpo-33786.lBvT8z.rst

-1
This file was deleted.

Misc/NEWS.d/next/Library/2020-07-07-21-56-26.bpo-41235.H2csMU.rst

-1
This file was deleted.

Misc/NEWS.d/next/Library/2020-07-12-22-16-58.bpo-39017.x3Cg-9.rst

-1
This file was deleted.

Misc/NEWS.d/next/Library/2020-07-13-15-06-35.bpo-41288.8mn5P-.rst

-2
This file was deleted.

Misc/NEWS.d/next/Security/2020-02-12-14-17-39.bpo-39603.Gt3RSg.rst

-2
This file was deleted.

Misc/NEWS.d/next/Security/2020-06-29-16-02-29.bpo-41004.ovF0KZ.rst

-1
This file was deleted.

Misc/NEWS.d/next/Security/2020-07-03-17-21-37.bpo-29778.cR_fGS.rst

-2
This file was deleted.

Misc/NEWS.d/next/Security/2020-07-15-20-15-08.bpo-41304.vNEeYA.rst

-1
This file was deleted.

Misc/NEWS.d/next/macOS/2020-08-15-00-33-27.bpo-41100.AksBg1.rst

-3
This file was deleted.

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.7.8+
2-
=============================
1+
This is Python version 3.7.9
2+
============================
33

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

0 commit comments

Comments
 (0)