blob: 39a4417409df5f3cf5471295e9b4ff18116fd248 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
.. bpo: 40527
.. date: 2020-05-06-14-52-35
.. nonce: gTNKuy
.. release date: 2020-05-13
.. section: Core and Builtins
Fix command line argument parsing: no longer write errors multiple times
into stderr.
..
.. bpo: 40417
.. date: 2020-05-01-19-04-52
.. nonce: Sti2lJ
.. section: Core and Builtins
Fix imp module deprecation warning when PyImport_ReloadModule is called.
Patch by Robert Rouhani.
..
.. bpo: 39562
.. date: 2020-05-01-14-58-16
.. nonce: KCsX8n
.. section: Core and Builtins
The constant values of future flags in the :mod:`__future__` module are
updated in order to prevent collision with compiler flags. Previously
``PyCF_ALLOW_TOP_LEVEL_AWAIT`` was clashing with ``CO_FUTURE_DIVISION``.
..
.. bpo: 40559
.. date: 2020-05-05-08-12-51
.. nonce: 112wwa
.. section: Library
Fix possible memory leak in the C implementation of :class:`asyncio.Task`.
..
.. bpo: 40355
.. date: 2020-05-02-14-24-48
.. nonce: xTujaB
.. section: Library
Improve error reporting in :func:`ast.literal_eval` in the presence of
malformed :class:`ast.Dict` nodes instead of silently ignoring any
non-conforming elements. Patch by Curtis Bucher.
..
.. bpo: 40459
.. date: 2020-05-02-04-29-31
.. nonce: fSAYVD
.. section: Library
:func:`platform.win32_ver` now produces correct *ptype* strings instead of
empty strings.
..
.. bpo: 40398
.. date: 2020-04-26-22-25-36
.. nonce: OdXnR3
.. section: Library
:func:`typing.get_args` now always returns an empty tuple for special
generic aliases.
..
.. bpo: 40561
.. date: 2020-05-08-08-39-40
.. nonce: ZMB_2i
.. section: Documentation
Provide docstrings for webbrowser open functions.
..
.. bpo: 39435
.. date: 2020-01-24-05-42-57
.. nonce: EFcdFU
.. section: Documentation
Fix an incorrect signature for :func:`pickle.loads` in the docs
..
.. bpo: 40458
.. date: 2020-05-01-20-57-57
.. nonce: Eb0ueI
.. section: Windows
Increase reserved stack space to prevent overflow crash on Windows.
..
.. bpo: 40412
.. date: 2020-05-01-17-28-04
.. nonce: dE0D8N
.. section: C API
Nullify inittab_copy during finalization, preventing future interpreter
initializations in an embedded situation from crashing. Patch by Gregory
Szorc.
|