Skip to content

Commit c0a9afe

Browse files
committed
3.6.12
1 parent f02de96 commit c0a9afe

9 files changed

+56
-13
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
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 6
21-
#define PY_MICRO_VERSION 11
21+
#define PY_MICRO_VERSION 12
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.6.11+"
26+
#define PY_VERSION "3.6.12"
2727
/*--end constants--*/
2828

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

Lib/pydoc_data/topics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Wed Jun 17 06:55:37 2020
2+
# Autogenerated by Sphinx on Sat Aug 15 02:33:47 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.6.12.rst

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.. bpo: 29778
2+
.. date: 2020-07-03-17-21-37
3+
.. nonce: cR_fGS
4+
.. release date: 2020-08-15
5+
.. section: Security
6+
7+
Ensure :file:`python3.dll` is loaded from correct locations when Python is
8+
embedded (CVE-2020-15523).
9+
10+
..
11+
12+
.. bpo: 41004
13+
.. date: 2020-06-29-16-02-29
14+
.. nonce: ovF0KZ
15+
.. section: Security
16+
17+
CVE-2020-14422: The __hash__() methods of ipaddress.IPv4Interface and
18+
ipaddress.IPv6Interface incorrectly generated constant hash values of 32 and
19+
128 respectively. This resulted in always causing hash collisions. The fix
20+
uses hash() to generate hash values for the tuple of (address, mask length,
21+
network address).
22+
23+
..
24+
25+
.. bpo: 39603
26+
.. date: 2020-02-12-14-17-39
27+
.. nonce: Gt3RSg
28+
.. section: Security
29+
30+
Prevent http header injection by rejecting control characters in
31+
http.client.putrequest(...).
32+
33+
..
34+
35+
.. bpo: 41288
36+
.. date: 2020-07-13-15-06-35
37+
.. nonce: 8mn5P-
38+
.. section: Library
39+
40+
Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now
41+
UnpicklingError instead of crashing.
42+
43+
..
44+
45+
.. bpo: 39017
46+
.. date: 2020-07-12-22-16-58
47+
.. nonce: x3Cg-9
48+
.. section: Library
49+
50+
Avoid infinite loop when reading specially crafted TAR files using the
51+
tarfile module (CVE-2019-20907).

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

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

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

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

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

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

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

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

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

Lines changed: 0 additions & 2 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.6.11+
2-
==============================
1+
This is Python version 3.6.12
2+
=============================
33

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

0 commit comments

Comments
 (0)