Skip to content

Commit d384df4

Browse files
committed
3.6.11rc1
1 parent 7df32f8 commit d384df4

12 files changed

+547
-425
lines changed

Doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ clean:
123123

124124
venv:
125125
$(PYTHON) -m venv $(VENVDIR)
126-
$(VENVDIR)/bin/python3 -m pip install -U Sphinx blurb
126+
$(VENVDIR)/bin/python3 -m pip install -U Sphinx==2.3.1 blurb
127127
@echo "The venv has been created in the $(VENVDIR) directory"
128128

129129
dist:

Include/patchlevel.h

Lines changed: 4 additions & 4 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 10
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23-
#define PY_RELEASE_SERIAL 0
21+
#define PY_MICRO_VERSION 11
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23+
#define PY_RELEASE_SERIAL 1
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.6.10+"
26+
#define PY_VERSION "3.6.11rc1"
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: 468 additions & 404 deletions
Large diffs are not rendered by default.

Misc/NEWS.d/3.6.11rc1.rst

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
.. bpo: 39073
2+
.. date: 2020-03-15-01-28-36
3+
.. nonce: 6Szd3i
4+
.. release date: 2020-06-17
5+
.. section: Security
6+
7+
Disallow CR or LF in email.headerregistry.Address arguments to guard against
8+
header injection attacks.
9+
10+
..
11+
12+
.. bpo: 38576
13+
.. date: 2020-03-14-14-57-44
14+
.. nonce: OowwQn
15+
.. section: Security
16+
17+
Disallow control characters in hostnames in http.client, addressing
18+
CVE-2019-18348. Such potentially malicious header injection URLs now cause a
19+
InvalidURL to be raised.
20+
21+
..
22+
23+
.. bpo: 39503
24+
.. date: 2020-01-30-16-15-29
25+
.. nonce: B299Yq
26+
.. section: Security
27+
28+
CVE-2020-8492: The :class:`~urllib.request.AbstractBasicAuthHandler` class
29+
of the :mod:`urllib.request` module uses an inefficient regular expression
30+
which can be exploited by an attacker to cause a denial of service. Fix the
31+
regex to prevent the catastrophic backtracking. Vulnerability reported by
32+
Ben Caller and Matt Schwager.
33+
34+
..
35+
36+
.. bpo: 39401
37+
.. date: 2020-01-28-20-54-09
38+
.. nonce: he7h_A
39+
.. section: Security
40+
41+
Avoid unsafe load of ``api-ms-win-core-path-l1-1-0.dll`` at startup on
42+
Windows 7.
43+
44+
..
45+
46+
.. bpo: 39510
47+
.. date: 2020-02-04-10-27-41
48+
.. nonce: PMIh-f
49+
.. section: Core and Builtins
50+
51+
Fix segfault in ``readinto()`` method on closed BufferedReader.
52+
53+
..
54+
55+
.. bpo: 39421
56+
.. date: 2020-01-22-15-53-37
57+
.. nonce: O3nG7u
58+
.. section: Core and Builtins
59+
60+
Fix possible crashes when operating with the functions in the :mod:`heapq`
61+
module and custom comparison operators.
62+
63+
..
64+
65+
.. bpo: 39503
66+
.. date: 2020-03-25-16-02-16
67+
.. nonce: YmMbYn
68+
.. section: Library
69+
70+
:class:`~urllib.request.AbstractBasicAuthHandler` of :mod:`urllib.request`
71+
now parses all WWW-Authenticate HTTP headers and accepts multiple challenges
72+
per header: use the realm of the first Basic challenge.

Misc/NEWS.d/next/Core and Builtins/2020-01-22-15-53-37.bpo-39421.O3nG7u.rst

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

Misc/NEWS.d/next/Core and Builtins/2020-02-04-10-27-41.bpo-39510.PMIh-f.rst

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

Misc/NEWS.d/next/Library/2020-03-25-16-02-16.bpo-39503.YmMbYn.rst

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

Misc/NEWS.d/next/Security/2020-01-28-20-54-09.bpo-39401.he7h_A.rst

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

Misc/NEWS.d/next/Security/2020-01-30-16-15-29.bpo-39503.B299Yq.rst

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

Misc/NEWS.d/next/Security/2020-03-14-14-57-44.bpo-38576.OowwQn.rst

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

Misc/NEWS.d/next/Security/2020-03-15-01-28-36.bpo-39073.6Szd3i.rst

Lines changed: 0 additions & 1 deletion
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.10+
2-
==============================
1+
This is Python version 3.6.10 candidate 1
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)