summaryrefslogtreecommitdiff
path: root/Misc/NEWS.d/3.5.0rc1.rst
blob: 1fb9bc6c04da38f6b7b26ef17102e8b7113b3790 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
.. bpo: 24667
.. date: 9288
.. nonce: tdwszf
.. release date: 2015-08-09
.. section: Core and Builtins

Resize odict in all cases that the underlying dict resizes.

..

.. bpo: 24824
.. date: 9287
.. nonce: Eoc4lq
.. section: Library

Signatures of codecs.encode() and codecs.decode() now are compatible with
pydoc.

..

.. bpo: 24634
.. date: 9286
.. nonce: 7bnVgr
.. section: Library

Importing uuid should not try to load libc on Windows

..

.. bpo: 24798
.. date: 9285
.. nonce: zDXL5R
.. section: Library

_msvccompiler.py doesn't properly support manifests

..

.. bpo: 4395
.. date: 9284
.. nonce: JpT0k7
.. section: Library

Better testing and documentation of binary operators. Patch by Martin
Panter.

..

.. bpo: 23973
.. date: 9283
.. nonce: wT59Vh
.. section: Library

Update typing.py from GitHub repo.

..

.. bpo: 23004
.. date: 9282
.. nonce: xswcPm
.. section: Library

mock_open() now reads binary data correctly when the type of read_data is
bytes.  Initial patch by Aaron Hill.

..

.. bpo: 23888
.. date: 9281
.. nonce: 7gw4oO
.. section: Library

Handle fractional time in cookie expiry. Patch by ssh.

..

.. bpo: 23652
.. date: 9280
.. nonce: DKQ_7t
.. section: Library

Make it possible to compile the select module against the libc headers from
the Linux Standard Base, which do not include some EPOLL macros.  Patch by
Matt Frank.

..

.. bpo: 22932
.. date: 9279
.. nonce: mPclSJ
.. section: Library

Fix timezones in email.utils.formatdate. Patch from Dmitry Shachnev.

..

.. bpo: 23779
.. date: 9278
.. nonce: ET4JJP
.. section: Library

imaplib raises TypeError if authenticator tries to abort. Patch from Craig
Holmquist.

..

.. bpo: 23319
.. date: 9277
.. nonce: FXyUH-
.. section: Library

Fix ctypes.BigEndianStructure, swap correctly bytes. Patch written by
Matthieu Gautier.

..

.. bpo: 23254
.. date: 9276
.. nonce: zNiy1X
.. section: Library

Document how to close the TCPServer listening socket. Patch from Martin
Panter.

..

.. bpo: 19450
.. date: 9275
.. nonce: VG7T-L
.. section: Library

Update Windows and OS X installer builds to use SQLite 3.8.11.

..

.. bpo: 17527
.. date: 9274
.. nonce: ve9fyw
.. section: Library

Add PATCH to wsgiref.validator. Patch from Luca Sbardella.

..

.. bpo: 24791
.. date: 9273
.. nonce: Ok-3nA
.. section: Library

Fix grammar regression for call syntax: 'g(\*a or b)'.

..

.. bpo: 23672
.. date: 9272
.. nonce: 8td2se
.. section: IDLE

Allow Idle to edit and run files with astral chars in name. Patch by Mohd
Sanad Zaki Rizvi.

..

.. bpo: 24745
.. date: 9271
.. nonce: edbziT
.. section: IDLE

Idle editor default font. Switch from Courier to platform-sensitive
TkFixedFont.  This should not affect current customized font selections.  If
there is a problem, edit $HOME/.idlerc/config-main.cfg and remove 'fontxxx'
entries from [Editor Window].  Patch by Mark Roseman.

..

.. bpo: 21192
.. date: 9270
.. nonce: CdbipH
.. section: IDLE

Idle editor. When a file is run, put its name in the restart bar. Do not
print false prompts. Original patch by Adnan Umer.

..

.. bpo: 13884
.. date: 9269
.. nonce: vVcO1E
.. section: IDLE

Idle menus. Remove tearoff lines. Patch by Roger Serwy.

..

.. bpo: 24129
.. date: 9268
.. nonce: Imr54z
.. section: Documentation

Clarify the reference documentation for name resolution. This includes
removing the assumption that readers will be familiar with the name
resolution scheme Python used prior to the introduction of lexical scoping
for function namespaces. Patch by Ivan Levkivskyi.

..

.. bpo: 20769
.. date: 9267
.. nonce: ZUc9z9
.. section: Documentation

Improve reload() docs. Patch by Dorian Pula.

..

.. bpo: 23589
.. date: 9266
.. nonce: rjU421
.. section: Documentation

Remove duplicate sentence from the FAQ.  Patch by Yongzhi Pan.

..

.. bpo: 24729
.. date: 9265
.. nonce: PH3A9p
.. section: Documentation

Correct IO tutorial to match implementation regarding encoding parameter to
open function.

..

.. bpo: 24751
.. date: 9264
.. nonce: pL2pbj
.. section: Tests

When running regrtest with the ``-w`` command line option, a test run is no
longer marked as a failure if all tests succeed when re-run.