Skip to content

Commit db45529

Browse files
committed
Python 3.8.6
1 parent 5acc1b5 commit db45529

20 files changed

+175
-29
lines changed

Include/patchlevel.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 8
2121
#define PY_MICRO_VERSION 6
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23+
#define PY_RELEASE_SERIAL 0
2424

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

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

Lib/pydoc_data/topics.py

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Mon Sep 7 17:49:24 2020
2+
# Autogenerated by Sphinx on Wed Sep 23 14:35:51 2020
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -6923,6 +6923,14 @@
69236923
'the data\n'
69246924
' model.\n'
69256925
'\n'
6926+
' Note: Due to a bug in the dispatching mechanism for '
6927+
'"**=", a\n'
6928+
' class that defines "__ipow__()" but returns '
6929+
'"NotImplemented"\n'
6930+
' would fail to fall back to "x.__pow__(y)" and '
6931+
'"y.__rpow__(x)".\n'
6932+
' This bug is fixed in Python 3.10.\n'
6933+
'\n'
69266934
'object.__neg__(self)\n'
69276935
'object.__pos__(self)\n'
69286936
'object.__abs__(self)\n'
@@ -9603,6 +9611,14 @@
96039611
'the data\n'
96049612
' model.\n'
96059613
'\n'
9614+
' Note: Due to a bug in the dispatching mechanism for '
9615+
'"**=", a\n'
9616+
' class that defines "__ipow__()" but returns '
9617+
'"NotImplemented"\n'
9618+
' would fail to fall back to "x.__pow__(y)" and '
9619+
'"y.__rpow__(x)".\n'
9620+
' This bug is fixed in Python 3.10.\n'
9621+
'\n'
96069622
'object.__neg__(self)\n'
96079623
'object.__pos__(self)\n'
96089624
'object.__abs__(self)\n'

Misc/NEWS.d/3.8.6.rst

+153
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
.. bpo: 41525
2+
.. date: 2020-08-12-07-35-07
3+
.. nonce: d9q3XL
4+
.. release date: 2020-09-23
5+
.. section: Core and Builtins
6+
7+
The output of ``python --help`` contains now only ASCII characters.
8+
9+
..
10+
11+
.. bpo: 41817
12+
.. date: 2020-09-22-00-23-30
13+
.. nonce: bnh-VG
14+
.. section: Library
15+
16+
fix `tkinter.EventType` Enum so all members are strings, and none are tuples
17+
18+
..
19+
20+
.. bpo: 41815
21+
.. date: 2020-09-19-23-14-54
22+
.. nonce: RNpuX3
23+
.. section: Library
24+
25+
Fix SQLite3 segfault when backing up closed database. Patch contributed by
26+
Peter David McCormick.
27+
28+
..
29+
30+
.. bpo: 41517
31+
.. date: 2020-09-15-22-43-30
32+
.. nonce: sLBH7g
33+
.. section: Library
34+
35+
fix bug allowing Enums to be extended via multiple inheritance
36+
37+
..
38+
39+
.. bpo: 39587
40+
.. date: 2020-09-15-14-56-13
41+
.. nonce: 69xzuh
42+
.. section: Library
43+
44+
use the correct mix-in data type when constructing Enums
45+
46+
..
47+
48+
.. bpo: 41789
49+
.. date: 2020-09-14-19-27-46
50+
.. nonce: pI_uZQ
51+
.. section: Library
52+
53+
Honor `object` overrides in `Enum` class creation (specifically, `__str__`,
54+
`__repr__`, `__format__`, and `__reduce_ex__`).
55+
56+
..
57+
58+
.. bpo: 39651
59+
.. date: 2020-09-11-12-38-55
60+
.. nonce: JMp9l2
61+
.. section: Library
62+
63+
Fix a race condition in the ``call_soon_threadsafe()`` method of
64+
``asyncio.ProactorEventLoop``: do nothing if the self-pipe socket has been
65+
closed.
66+
67+
..
68+
69+
.. bpo: 41720
70+
.. date: 2020-09-04-20-45-38
71+
.. nonce: PW9MzZ
72+
.. section: Library
73+
74+
Fixed :meth:`turtle.Vec2D.__rmul__` for arguments which are not int or
75+
float.
76+
77+
..
78+
79+
.. bpo: 39728
80+
.. date: 2020-02-24-10-58-34
81+
.. nonce: kOOaHn
82+
.. section: Library
83+
84+
fix default `_missing_` so a duplicate `ValueError` is not set as the
85+
`__context__` of the original `ValueError`
86+
87+
..
88+
89+
.. bpo: 37479
90+
.. date: 2019-07-02-12-43-57
91+
.. nonce: O53a5S
92+
.. section: Library
93+
94+
When `Enum.__str__` is overridden in a derived class, the override will be
95+
used by `Enum.__format__` regardless of whether mixin classes are present.
96+
97+
..
98+
99+
.. bpo: 35293
100+
.. date: 2020-09-12-17-37-13
101+
.. nonce: _cOwPD
102+
.. section: Documentation
103+
104+
Fix RemovedInSphinx40Warning when building the documentation. Patch by
105+
Dong-hee Na.
106+
107+
..
108+
109+
.. bpo: 37149
110+
.. date: 2020-09-10-07-48-02
111+
.. nonce: VD0rCv
112+
.. section: Documentation
113+
114+
Change Shipman tkinter doc link from archive.org to TkDocs. (The doc has
115+
been removed from the NMT server.) The new link responds much faster and
116+
includes a short explanatory note.
117+
118+
..
119+
120+
.. bpo: 41731
121+
.. date: 2020-09-11-19-12-31
122+
.. nonce: Ivxh4U
123+
.. section: Tests
124+
125+
Make test_cmd_line_script pass with option '-vv'.
126+
127+
..
128+
129+
.. bpo: 41744
130+
.. date: 2020-09-11-17-59-33
131+
.. nonce: e_ugDQ
132+
.. section: Windows
133+
134+
Fixes automatic import of props file when using the Nuget package.
135+
136+
..
137+
138+
.. bpo: 35764
139+
.. date: 2020-09-22-11-13-45
140+
.. nonce: VoNa8y
141+
.. section: IDLE
142+
143+
Rewrite the Calltips doc section.
144+
145+
..
146+
147+
.. bpo: 40181
148+
.. date: 2020-09-22-00-45-40
149+
.. nonce: hhQi3z
150+
.. section: IDLE
151+
152+
In calltips, stop reminding that '/' marks the end of positional-only
153+
arguments.

Misc/NEWS.d/next/Core and Builtins/2020-08-12-07-35-07.bpo-41525.d9q3XL.rst

-1
This file was deleted.

Misc/NEWS.d/next/Documentation/2020-09-10-07-48-02.bpo-37149.VD0rCv.rst

-1
This file was deleted.

Misc/NEWS.d/next/Documentation/2020-09-12-17-37-13.bpo-35293._cOwPD.rst

-1
This file was deleted.

Misc/NEWS.d/next/IDLE/2020-09-22-00-45-40.bpo-40181.hhQi3z.rst

-2
This file was deleted.

Misc/NEWS.d/next/IDLE/2020-09-22-11-13-45.bpo-35764.VoNa8y.rst

-1
This file was deleted.

Misc/NEWS.d/next/Library/2019-07-02-12-43-57.bpo-37479.O53a5S.rst

-2
This file was deleted.

Misc/NEWS.d/next/Library/2020-02-24-10-58-34.bpo-39728.kOOaHn.rst

-1
This file was deleted.

Misc/NEWS.d/next/Library/2020-09-04-20-45-38.bpo-41720.PW9MzZ.rst

-2
This file was deleted.

Misc/NEWS.d/next/Library/2020-09-11-12-38-55.bpo-39651.JMp9l2.rst

-3
This file was deleted.

Misc/NEWS.d/next/Library/2020-09-14-19-27-46.bpo-41789.pI_uZQ.rst

-2
This file was deleted.

Misc/NEWS.d/next/Library/2020-09-15-14-56-13.bpo-39587.69xzuh.rst

-1
This file was deleted.

Misc/NEWS.d/next/Library/2020-09-15-22-43-30.bpo-41517.sLBH7g.rst

-1
This file was deleted.

Misc/NEWS.d/next/Library/2020-09-19-23-14-54.bpo-41815.RNpuX3.rst

-2
This file was deleted.

Misc/NEWS.d/next/Library/2020-09-22-00-23-30.bpo-41817.bnh-VG.rst

-1
This file was deleted.

Misc/NEWS.d/next/Tests/2020-09-11-19-12-31.bpo-41731.Ivxh4U.rst

-1
This file was deleted.

Misc/NEWS.d/next/Windows/2020-09-11-17-59-33.bpo-41744.e_ugDQ.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.8.6rc1
2-
===============================
1+
This is Python version 3.8.6
2+
============================
33

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

0 commit comments

Comments
 (0)