Skip to content

Commit 7ea0551

Browse files
committed
3.6.10rc1
1 parent b23c084 commit 7ea0551

13 files changed

+104
-30
lines changed

Include/patchlevel.h

+4-4
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 9
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23-
#define PY_RELEASE_SERIAL 0
21+
#define PY_MICRO_VERSION 10
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.9+"
26+
#define PY_VERSION "3.6.10rc1"
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 Tue Jun 18 20:31:29 2019
2+
# Autogenerated by Sphinx on Wed Dec 11 03:20:37 2019
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'

Misc/NEWS.d/3.6.10rc1.rst

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
.. bpo: 38945
2+
.. date: 2019-12-01-22-44-40
3+
.. nonce: ztmNXc
4+
.. release date: 2019-12-11
5+
.. section: Security
6+
7+
Newline characters have been escaped when performing uu encoding to prevent
8+
them from overflowing into to content section of the encoded file. This
9+
prevents malicious or accidental modification of data during the decoding
10+
process.
11+
12+
..
13+
14+
.. bpo: 37228
15+
.. date: 2019-11-21-21-36-54
16+
.. nonce: yBZnFG
17+
.. section: Security
18+
19+
Due to significant security concerns, the *reuse_address* parameter of
20+
:meth:`asyncio.loop.create_datagram_endpoint` is no longer supported. This
21+
is because of the behavior of ``SO_REUSEADDR`` in UDP. For more details, see
22+
the documentation for ``loop.create_datagram_endpoint()``. (Contributed by
23+
Kyle Stanley, Antoine Pitrou, and Yury Selivanov in :issue:`37228`.)
24+
25+
..
26+
27+
.. bpo: 38804
28+
.. date: 2019-11-15-00-54-42
29+
.. nonce: vjbM8V
30+
.. section: Security
31+
32+
Fixes a ReDoS vulnerability in :mod:`http.cookiejar`. Patch by Ben Caller.
33+
34+
..
35+
36+
.. bpo: 38243
37+
.. date: 2019-09-25-13-21-09
38+
.. nonce: 1pfz24
39+
.. section: Security
40+
41+
Escape the server title of :class:`xmlrpc.server.DocXMLRPCServer` when
42+
rendering the document page as HTML. (Contributed by Dong-hee Na in
43+
:issue:`38243`.)
44+
45+
..
46+
47+
.. bpo: 38174
48+
.. date: 2019-09-23-21-02-46
49+
.. nonce: MeWuJd
50+
.. section: Security
51+
52+
Update vendorized expat library version to 2.2.8, which resolves
53+
CVE-2019-15903.
54+
55+
..
56+
57+
.. bpo: 37461
58+
.. date: 2019-07-16-08-11-00
59+
.. nonce: 1Ahz7O
60+
.. section: Security
61+
62+
Fix an infinite loop when parsing specially crafted email headers. Patch by
63+
Abhilash Raj.
64+
65+
..
66+
67+
.. bpo: 34155
68+
.. date: 2019-05-04-13-33-37
69+
.. nonce: MJll68
70+
.. section: Security
71+
72+
Fix parsing of invalid email addresses with more than one ``@`` (e.g.
73+
a@b@c.com.) to not return the part before 2nd ``@`` as valid email address.
74+
Patch by maxking & jpic.
75+
76+
..
77+
78+
.. bpo: 38216
79+
.. date: 2019-09-27-15-24-45
80+
.. nonce: -7yvZR
81+
.. section: Library
82+
83+
Allow the rare code that wants to send invalid http requests from the
84+
`http.client` library a way to do so. The fixes for bpo-30458 led to
85+
breakage for some projects that were relying on this ability to test their
86+
own behavior in the face of bad requests.
87+
88+
..
89+
90+
.. bpo: 36564
91+
.. date: 2019-04-08-13-00-13
92+
.. nonce: _n67m_
93+
.. section: Library
94+
95+
Fix infinite loop in email header folding logic that would be triggered when
96+
an email policy's max_line_length is not long enough to include the required
97+
markup and any values in the message. Patch by Paul Ganssle

Misc/NEWS.d/next/Library/2019-04-08-13-00-13.bpo-36564._n67m_.rst

-3
This file was deleted.

Misc/NEWS.d/next/Library/2019-09-27-15-24-45.bpo-38216.-7yvZR.rst

-4
This file was deleted.

Misc/NEWS.d/next/Security/2019-05-04-13-33-37.bpo-34155.MJll68.rst

-1
This file was deleted.

Misc/NEWS.d/next/Security/2019-07-16-08-11-00.bpo-37461.1Ahz7O.rst

-2
This file was deleted.

Misc/NEWS.d/next/Security/2019-09-23-21-02-46.bpo-38174.MeWuJd.rst

-2
This file was deleted.

Misc/NEWS.d/next/Security/2019-09-25-13-21-09.bpo-38243.1pfz24.rst

-3
This file was deleted.

Misc/NEWS.d/next/Security/2019-11-15-00-54-42.bpo-38804.vjbM8V.rst

-1
This file was deleted.

Misc/NEWS.d/next/Security/2019-11-21-21-36-54.bpo-37228.yBZnFG.rst

-6
This file was deleted.

Misc/NEWS.d/next/Security/2019-12-01-22-44-40.bpo-38945.ztmNXc.rst

-1
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.6.9+
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)