• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1.. bpo: 39080
2.. date: 2019-12-17-21-45-36
3.. nonce: OrxEVS
4.. release date: 2019-12-18
5.. section: Core and Builtins
6
7Fix the value of *end_col_offset* for Starred Expression AST nodes when they
8are among the elements in the *args* attribute of Call AST nodes.
9
10..
11
12.. bpo: 39031
13.. date: 2019-12-12-21-05-43
14.. nonce: imlCYZ
15.. section: Core and Builtins
16
17When parsing an "elif" node, lineno and col_offset of the node now point to
18the "elif" keyword and not to its condition, making it consistent with the
19"if" node. Patch by Lysandros Nikolaou.
20
21..
22
23.. bpo: 39008
24.. date: 2019-12-09-10-38-51
25.. nonce: Rrp6f1
26.. section: Core and Builtins
27
28:c:func:`PySys_Audit` now requires ``Py_ssize_t`` to be used for size
29arguments in the format string, regardless of whethen ``PY_SSIZE_T_CLEAN``
30was defined at include time.
31
32..
33
34.. bpo: 39022
35.. date: 2019-12-10-23-34-48
36.. nonce: QDtIxI
37.. section: Library
38
39Update importliib.metadata to include improvements from importlib_metadata
401.3 including better serialization of EntryPoints and improved documentation
41for custom finders.
42
43..
44
45.. bpo: 38811
46.. date: 2019-11-15-18-06-04
47.. nonce: AmdQ6M
48.. section: Library
49
50Fix an unhandled exception in :mod:`pathlib` when :meth:`os.link` is
51missing. Patch by Toke Høiland-Jørgensen.
52
53..
54
55.. bpo: 36406
56.. date: 2019-03-24-12-12-27
57.. nonce: mCEkOl
58.. section: Library
59
60Handle namespace packages in :mod:`doctest`. Patch by Karthikeyan
61Singaravelan.
62
63..
64
65.. bpo: 38546
66.. date: 2019-12-17-15-27-07
67.. nonce: 82JwN2
68.. section: Tests
69
70Multiprocessing and concurrent.futures tests now stop the resource tracker
71process when tests complete.
72
73..
74
75.. bpo: 39007
76.. date: 2019-12-09-10-40-34
77.. nonce: vtarxo
78.. section: Windows
79
80Add auditing events to functions in :mod:`winreg`.
81
82..
83
84.. bpo: 38295
85.. date: 2019-12-17-03-43-04
86.. nonce: hgDvlB
87.. section: macOS
88
89Prevent failure of test_relative_path in test_py_compile on macOS Catalina.
90
91..
92
93.. bpo: 38944
94.. date: 2019-11-30-12-10-36
95.. nonce: _3xjKG
96.. section: IDLE
97
98Excape key now closes IDLE completion windows.  Patch by Johnny Najera.
99
100..
101
102.. bpo: 38943
103.. date: 2019-11-29-23-44-11
104.. nonce: 8pUKKs
105.. section: IDLE
106
107Fix IDLE autocomplete windows not always appearing on some systems. Patch by
108Johnny Najera.
109