larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1 | .. bpo: 25630 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 2 | .. date: 9450 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 3 | .. nonce: ZxzcoY |
| 4 | .. release date: 2015-11-22 |
| 5 | .. section: Core and Builtins |
| 6 | |
| 7 | Fix a possible segfault during argument parsing in functions that accept |
| 8 | filesystem paths. |
| 9 | |
| 10 | .. |
| 11 | |
| 12 | .. bpo: 23564 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 13 | .. date: 9449 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 14 | .. nonce: XHarGG |
| 15 | .. section: Core and Builtins |
| 16 | |
| 17 | Fixed a partially broken sanity check in the _posixsubprocess internals |
| 18 | regarding how fds_to_pass were passed to the child. The bug had no actual |
| 19 | impact as subprocess.py already avoided it. |
| 20 | |
| 21 | .. |
| 22 | |
| 23 | .. bpo: 25388 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 24 | .. date: 9448 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 25 | .. nonce: zm3uuQ |
| 26 | .. section: Core and Builtins |
| 27 | |
| 28 | Fixed tokenizer crash when processing undecodable source code with a null |
| 29 | byte. |
| 30 | |
| 31 | .. |
| 32 | |
| 33 | .. bpo: 25462 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 34 | .. date: 9447 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 35 | .. nonce: eXDzgO |
| 36 | .. section: Core and Builtins |
| 37 | |
| 38 | The hash of the key now is calculated only once in most operations in C |
| 39 | implementation of OrderedDict. |
| 40 | |
| 41 | .. |
| 42 | |
| 43 | .. bpo: 22995 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 44 | .. date: 9446 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 45 | .. nonce: 90kpuP |
| 46 | .. section: Core and Builtins |
| 47 | |
| 48 | Default implementation of __reduce__ and __reduce_ex__ now rejects builtin |
| 49 | types with not defined __new__. |
| 50 | |
| 51 | .. |
| 52 | |
| 53 | .. bpo: 25555 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 54 | .. date: 9445 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 55 | .. nonce: MUpG-j |
| 56 | .. section: Core and Builtins |
| 57 | |
| 58 | Fix parser and AST: fill lineno and col_offset of "arg" node when compiling |
| 59 | AST from Python objects. |
| 60 | |
| 61 | .. |
| 62 | |
| 63 | .. bpo: 24802 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 64 | .. date: 9444 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 65 | .. nonce: Qie066 |
| 66 | .. section: Core and Builtins |
| 67 | |
| 68 | Avoid buffer overreads when int(), float(), compile(), exec() and eval() are |
| 69 | passed bytes-like objects. These objects are not necessarily terminated by |
| 70 | a null byte, but the functions assumed they were. |
| 71 | |
| 72 | .. |
| 73 | |
| 74 | .. bpo: 24726 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 75 | .. date: 9443 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 76 | .. nonce: AHk4v2 |
| 77 | .. section: Core and Builtins |
| 78 | |
| 79 | Fixed a crash and leaking NULL in repr() of OrderedDict that was mutated by |
| 80 | direct calls of dict methods. |
| 81 | |
| 82 | .. |
| 83 | |
| 84 | .. bpo: 25449 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 85 | .. date: 9442 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 86 | .. nonce: VqTOFi |
| 87 | .. section: Core and Builtins |
| 88 | |
| 89 | Iterating OrderedDict with keys with unstable hash now raises KeyError in C |
| 90 | implementations as well as in Python implementation. |
| 91 | |
| 92 | .. |
| 93 | |
| 94 | .. bpo: 25395 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 95 | .. date: 9441 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 96 | .. nonce: htkE3W |
| 97 | .. section: Core and Builtins |
| 98 | |
| 99 | Fixed crash when highly nested OrderedDict structures were garbage |
| 100 | collected. |
| 101 | |
| 102 | .. |
| 103 | |
| 104 | .. bpo: 25274 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 105 | .. date: 9440 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 106 | .. nonce: QCGvAF |
| 107 | .. section: Core and Builtins |
| 108 | |
| 109 | sys.setrecursionlimit() now raises a RecursionError if the new recursion |
| 110 | limit is too low depending at the current recursion depth. Modify also the |
| 111 | "lower-water mark" formula to make it monotonic. This mark is used to decide |
| 112 | when the overflowed flag of the thread state is reset. |
| 113 | |
| 114 | .. |
| 115 | |
| 116 | .. bpo: 24402 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 117 | .. date: 9439 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 118 | .. nonce: MAgi3X |
| 119 | .. section: Core and Builtins |
| 120 | |
| 121 | Fix input() to prompt to the redirected stdout when sys.stdout.fileno() |
| 122 | fails. |
| 123 | |
| 124 | .. |
| 125 | |
| 126 | .. bpo: 24806 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 127 | .. date: 9438 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 128 | .. nonce: Nb0znT |
| 129 | .. section: Core and Builtins |
| 130 | |
| 131 | Prevent builtin types that are not allowed to be subclassed from being |
| 132 | subclassed through multiple inheritance. |
| 133 | |
| 134 | .. |
| 135 | |
| 136 | .. bpo: 24848 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 137 | .. date: 9437 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 138 | .. nonce: HlUSuy |
| 139 | .. section: Core and Builtins |
| 140 | |
| 141 | Fixed a number of bugs in UTF-7 decoding of misformed data. |
| 142 | |
| 143 | .. |
| 144 | |
| 145 | .. bpo: 25280 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 146 | .. date: 9436 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 147 | .. nonce: ivTMwd |
| 148 | .. section: Core and Builtins |
| 149 | |
| 150 | Import trace messages emitted in verbose (-v) mode are no longer formatted |
| 151 | twice. |
| 152 | |
| 153 | .. |
| 154 | |
| 155 | .. bpo: 25003 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 156 | .. date: 9435 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 157 | .. nonce: _ban92 |
| 158 | .. section: Core and Builtins |
| 159 | |
| 160 | On Solaris 11.3 or newer, os.urandom() now uses the getrandom() function |
| 161 | instead of the getentropy() function. The getentropy() function is blocking |
Serhiy Storchaka | 3f819ca | 2018-10-31 02:26:06 +0200 | [diff] [blame] | 162 | to generate very good quality entropy, os.urandom() doesn't need such |
| 163 | high-quality entropy. |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 164 | |
| 165 | .. |
| 166 | |
| 167 | .. bpo: 25182 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 168 | .. date: 9434 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 169 | .. nonce: gBDq-T |
| 170 | .. section: Core and Builtins |
| 171 | |
| 172 | The stdprinter (used as sys.stderr before the io module is imported at |
| 173 | startup) now uses the backslashreplace error handler. |
| 174 | |
| 175 | .. |
| 176 | |
| 177 | .. bpo: 25131 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 178 | .. date: 9433 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 179 | .. nonce: j5hH6a |
| 180 | .. section: Core and Builtins |
| 181 | |
| 182 | Make the line number and column offset of set/dict literals and |
| 183 | comprehensions correspond to the opening brace. |
| 184 | |
| 185 | .. |
| 186 | |
| 187 | .. bpo: 25150 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 188 | .. date: 9432 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 189 | .. nonce: 0Gh-Ty |
| 190 | .. section: Core and Builtins |
| 191 | |
| 192 | Hide the private _Py_atomic_xxx symbols from the public Python.h header to |
| 193 | fix a compilation error with OpenMP. PyThreadState_GET() becomes an alias to |
Stéphane Wirtel | 683281f | 2018-10-06 16:35:53 +0200 | [diff] [blame] | 194 | PyThreadState_Get() to avoid ABI incompatibilities. |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 195 | |
| 196 | .. |
| 197 | |
| 198 | .. bpo: 25626 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 199 | .. date: 9431 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 200 | .. nonce: TQ3fvb |
| 201 | .. section: Library |
| 202 | |
| 203 | Change three zlib functions to accept sizes that fit in Py_ssize_t, but |
| 204 | internally cap those sizes to UINT_MAX. This resolves a regression in 3.5 |
| 205 | where GzipFile.read() failed to read chunks larger than 2 or 4 GiB. The |
| 206 | change affects the zlib.Decompress.decompress() max_length parameter, the |
| 207 | zlib.decompress() bufsize parameter, and the zlib.Decompress.flush() length |
| 208 | parameter. |
| 209 | |
| 210 | .. |
| 211 | |
| 212 | .. bpo: 25583 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 213 | .. date: 9430 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 214 | .. nonce: Gk-cim |
| 215 | .. section: Library |
| 216 | |
| 217 | Avoid incorrect errors raised by os.makedirs(exist_ok=True) when the OS |
| 218 | gives priority to errors such as EACCES over EEXIST. |
| 219 | |
| 220 | .. |
| 221 | |
| 222 | .. bpo: 25593 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 223 | .. date: 9429 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 224 | .. nonce: 56uegI |
| 225 | .. section: Library |
| 226 | |
| 227 | Change semantics of EventLoop.stop() in asyncio. |
| 228 | |
| 229 | .. |
| 230 | |
| 231 | .. bpo: 6973 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 232 | .. date: 9428 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 233 | .. nonce: nl5cHt |
| 234 | .. section: Library |
| 235 | |
| 236 | When we know a subprocess.Popen process has died, do not allow the |
| 237 | send_signal(), terminate(), or kill() methods to do anything as they could |
| 238 | potentially signal a different process. |
| 239 | |
| 240 | .. |
| 241 | |
| 242 | .. bpo: 25590 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 243 | .. date: 9427 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 244 | .. nonce: aCt-yW |
| 245 | .. section: Library |
| 246 | |
| 247 | In the Readline completer, only call getattr() once per attribute. |
| 248 | |
| 249 | .. |
| 250 | |
| 251 | .. bpo: 25498 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 252 | .. date: 9426 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 253 | .. nonce: AvqEBl |
| 254 | .. section: Library |
| 255 | |
| 256 | Fix a crash when garbage-collecting ctypes objects created by wrapping a |
| 257 | memoryview. This was a regression made in 3.5a1. Based on patch by |
| 258 | Eryksun. |
| 259 | |
| 260 | .. |
| 261 | |
| 262 | .. bpo: 25584 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 263 | .. date: 9425 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 264 | .. nonce: 124mYw |
| 265 | .. section: Library |
| 266 | |
| 267 | Added "escape" to the __all__ list in the glob module. |
| 268 | |
| 269 | .. |
| 270 | |
| 271 | .. bpo: 25584 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 272 | .. date: 9424 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 273 | .. nonce: ZeWX0J |
| 274 | .. section: Library |
| 275 | |
| 276 | Fixed recursive glob() with patterns starting with ``**``. |
| 277 | |
| 278 | .. |
| 279 | |
| 280 | .. bpo: 25446 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 281 | .. date: 9423 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 282 | .. nonce: k1DByx |
| 283 | .. section: Library |
| 284 | |
| 285 | Fix regression in smtplib's AUTH LOGIN support. |
| 286 | |
| 287 | .. |
| 288 | |
| 289 | .. bpo: 18010 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 290 | .. date: 9422 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 291 | .. nonce: Azyf1C |
| 292 | .. section: Library |
| 293 | |
| 294 | Fix the pydoc web server's module search function to handle exceptions from |
| 295 | importing packages. |
| 296 | |
| 297 | .. |
| 298 | |
| 299 | .. bpo: 25554 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 300 | .. date: 9421 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 301 | .. nonce: UM9MlR |
| 302 | .. section: Library |
| 303 | |
| 304 | Got rid of circular references in regular expression parsing. |
| 305 | |
| 306 | .. |
| 307 | |
| 308 | .. bpo: 25510 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 309 | .. date: 9420 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 310 | .. nonce: 79g7LA |
| 311 | .. section: Library |
| 312 | |
| 313 | fileinput.FileInput.readline() now returns b'' instead of '' at the end if |
| 314 | the FileInput was opened with binary mode. Patch by Ryosuke Ito. |
| 315 | |
| 316 | .. |
| 317 | |
| 318 | .. bpo: 25503 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 319 | .. date: 9419 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 320 | .. nonce: Zea0Y7 |
| 321 | .. section: Library |
| 322 | |
| 323 | Fixed inspect.getdoc() for inherited docstrings of properties. Original |
| 324 | patch by John Mark Vandenberg. |
| 325 | |
| 326 | .. |
| 327 | |
| 328 | .. bpo: 25515 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 329 | .. date: 9418 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 330 | .. nonce: fQsyYG |
| 331 | .. section: Library |
| 332 | |
| 333 | Always use os.urandom as a source of randomness in uuid.uuid4. |
| 334 | |
| 335 | .. |
| 336 | |
| 337 | .. bpo: 21827 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 338 | .. date: 9417 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 339 | .. nonce: k2oreR |
| 340 | .. section: Library |
| 341 | |
| 342 | Fixed textwrap.dedent() for the case when largest common whitespace is a |
| 343 | substring of smallest leading whitespace. Based on patch by Robert Li. |
| 344 | |
| 345 | .. |
| 346 | |
| 347 | .. bpo: 25447 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 348 | .. date: 9416 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 349 | .. nonce: eDYc4t |
| 350 | .. section: Library |
| 351 | |
| 352 | The lru_cache() wrapper objects now can be copied and pickled (by returning |
| 353 | the original object unchanged). |
| 354 | |
| 355 | .. |
| 356 | |
| 357 | .. bpo: 25390 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 358 | .. date: 9415 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 359 | .. nonce: 6mSgRq |
| 360 | .. section: Library |
| 361 | |
| 362 | typing: Don't crash on Union[str, Pattern]. |
| 363 | |
| 364 | .. |
| 365 | |
| 366 | .. bpo: 25441 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 367 | .. date: 9414 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 368 | .. nonce: d7zph6 |
| 369 | .. section: Library |
| 370 | |
| 371 | asyncio: Raise error from drain() when socket is closed. |
| 372 | |
| 373 | .. |
| 374 | |
| 375 | .. bpo: 25410 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 376 | .. date: 9413 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 377 | .. nonce: QAs_3B |
| 378 | .. section: Library |
| 379 | |
| 380 | Cleaned up and fixed minor bugs in C implementation of OrderedDict. |
| 381 | |
| 382 | .. |
| 383 | |
| 384 | .. bpo: 25411 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 385 | .. date: 9412 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 386 | .. nonce: qsJTCb |
| 387 | .. section: Library |
| 388 | |
| 389 | Improved Unicode support in SMTPHandler through better use of the email |
| 390 | package. Thanks to user simon04 for the patch. |
| 391 | |
| 392 | .. |
| 393 | |
| 394 | .. bpo: 25407 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 395 | .. date: 9411 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 396 | .. nonce: ukNt1D |
| 397 | .. section: Library |
| 398 | |
| 399 | Remove mentions of the formatter module being removed in Python 3.6. |
| 400 | |
| 401 | .. |
| 402 | |
| 403 | .. bpo: 25406 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 404 | .. date: 9410 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 405 | .. nonce: 5MZKU_ |
| 406 | .. section: Library |
| 407 | |
| 408 | Fixed a bug in C implementation of OrderedDict.move_to_end() that caused |
| 409 | segmentation fault or hang in iterating after moving several items to the |
| 410 | start of ordered dict. |
| 411 | |
| 412 | .. |
| 413 | |
| 414 | .. bpo: 25364 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 415 | .. date: 9409 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 416 | .. nonce: u_1Wi6 |
| 417 | .. section: Library |
| 418 | |
| 419 | zipfile now works in threads disabled builds. |
| 420 | |
| 421 | .. |
| 422 | |
| 423 | .. bpo: 25328 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 424 | .. date: 9408 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 425 | .. nonce: Rja1Xg |
| 426 | .. section: Library |
| 427 | |
| 428 | smtpd's SMTPChannel now correctly raises a ValueError if both decode_data |
| 429 | and enable_SMTPUTF8 are set to true. |
| 430 | |
| 431 | .. |
| 432 | |
| 433 | .. bpo: 25316 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 434 | .. date: 9407 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 435 | .. nonce: dHQHWI |
| 436 | .. section: Library |
| 437 | |
| 438 | distutils raises OSError instead of DistutilsPlatformError when MSVC is not |
| 439 | installed. |
| 440 | |
| 441 | .. |
| 442 | |
| 443 | .. bpo: 25380 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 444 | .. date: 9406 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 445 | .. nonce: sKZ6-I |
| 446 | .. section: Library |
| 447 | |
| 448 | Fixed protocol for the STACK_GLOBAL opcode in pickletools.opcodes. |
| 449 | |
| 450 | .. |
| 451 | |
| 452 | .. bpo: 23972 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 453 | .. date: 9405 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 454 | .. nonce: s2g30g |
| 455 | .. section: Library |
| 456 | |
| 457 | Updates asyncio datagram create method allowing reuseport and reuseaddr |
| 458 | socket options to be set prior to binding the socket. Mirroring the existing |
| 459 | asyncio create_server method the reuseaddr option for datagram sockets |
| 460 | defaults to True if the O/S is 'posix' (except if the platform is Cygwin). |
| 461 | Patch by Chris Laws. |
| 462 | |
| 463 | .. |
| 464 | |
| 465 | .. bpo: 25304 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 466 | .. date: 9404 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 467 | .. nonce: CsmLyI |
| 468 | .. section: Library |
| 469 | |
| 470 | Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to |
| 471 | a loop from another thread, returning a concurrent.futures.Future. By |
| 472 | Vincent Michel. |
| 473 | |
| 474 | .. |
| 475 | |
| 476 | .. bpo: 25232 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 477 | .. date: 9403 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 478 | .. nonce: KhKjCE |
| 479 | .. section: Library |
| 480 | |
| 481 | Fix CGIRequestHandler to split the query from the URL at the first question |
| 482 | mark (?) rather than the last. Patch from Xiang Zhang. |
| 483 | |
| 484 | .. |
| 485 | |
| 486 | .. bpo: 24657 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 487 | .. date: 9402 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 488 | .. nonce: h2Ag7y |
| 489 | .. section: Library |
| 490 | |
| 491 | Prevent CGIRequestHandler from collapsing slashes in the query part of the |
| 492 | URL as if it were a path. Patch from Xiang Zhang. |
| 493 | |
| 494 | .. |
| 495 | |
| 496 | .. bpo: 24483 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 497 | .. date: 9401 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 498 | .. nonce: WPLGSJ |
| 499 | .. section: Library |
| 500 | |
| 501 | C implementation of functools.lru_cache() now calculates key's hash only |
| 502 | once. |
| 503 | |
| 504 | .. |
| 505 | |
| 506 | .. bpo: 22958 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 507 | .. date: 9400 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 508 | .. nonce: Ebu7Gl |
| 509 | .. section: Library |
| 510 | |
| 511 | Constructor and update method of weakref.WeakValueDictionary now accept the |
| 512 | self and the dict keyword arguments. |
| 513 | |
| 514 | .. |
| 515 | |
| 516 | .. bpo: 22609 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 517 | .. date: 9399 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 518 | .. nonce: fV7hdV |
| 519 | .. section: Library |
| 520 | |
| 521 | Constructor of collections.UserDict now accepts the self keyword argument. |
| 522 | |
| 523 | .. |
| 524 | |
| 525 | .. bpo: 25111 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 526 | .. date: 9398 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 527 | .. nonce: azL4qE |
| 528 | .. section: Library |
| 529 | |
| 530 | Fixed comparison of traceback.FrameSummary. |
| 531 | |
| 532 | .. |
| 533 | |
| 534 | .. bpo: 25262 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 535 | .. date: 9397 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 536 | .. nonce: pQS5cB |
| 537 | .. section: Library |
| 538 | |
| 539 | Added support for BINBYTES8 opcode in Python implementation of unpickler. |
| 540 | Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no |
| 541 | longer silently ignored on 32-bit platforms in C implementation. |
| 542 | |
| 543 | .. |
| 544 | |
| 545 | .. bpo: 25034 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 546 | .. date: 9396 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 547 | .. nonce: eGvOIb |
| 548 | .. section: Library |
| 549 | |
| 550 | Fix string.Formatter problem with auto-numbering and nested format_specs. |
| 551 | Patch by Anthon van der Neut. |
| 552 | |
| 553 | .. |
| 554 | |
| 555 | .. bpo: 25233 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 556 | .. date: 9395 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 557 | .. nonce: EdZV9x |
| 558 | .. section: Library |
| 559 | |
| 560 | Rewrite the guts of asyncio.Queue and asyncio.Semaphore to be more |
| 561 | understandable and correct. |
| 562 | |
| 563 | .. |
| 564 | |
| 565 | .. bpo: 25203 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 566 | .. date: 9394 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 567 | .. nonce: IgDEbt |
| 568 | .. section: Library |
| 569 | |
| 570 | Failed readline.set_completer_delims() no longer left the module in |
| 571 | inconsistent state. |
| 572 | |
| 573 | .. |
| 574 | |
| 575 | .. bpo: 23600 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 576 | .. date: 9393 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 577 | .. nonce: 7J_RD5 |
| 578 | .. section: Library |
| 579 | |
| 580 | Default implementation of tzinfo.fromutc() was returning wrong results in |
| 581 | some cases. |
| 582 | |
| 583 | .. |
| 584 | |
| 585 | .. bpo: 23329 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 586 | .. date: 9392 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 587 | .. nonce: yccJBE |
| 588 | .. section: Library |
| 589 | |
| 590 | Allow the ssl module to be built with older versions of LibreSSL. |
| 591 | |
| 592 | .. |
| 593 | |
| 594 | .. bpo: 0 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 595 | .. date: 9391 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 596 | .. nonce: ww9QSm |
| 597 | .. section: Library |
| 598 | |
| 599 | Prevent overflow in _Unpickler_Read. |
| 600 | |
| 601 | .. |
| 602 | |
| 603 | .. bpo: 25047 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 604 | .. date: 9390 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 605 | .. nonce: kc8tqx |
| 606 | .. section: Library |
| 607 | |
| 608 | The XML encoding declaration written by Element Tree now respects the letter |
| 609 | case given by the user. This restores the ability to write encoding names in |
| 610 | uppercase like "UTF-8", which worked in Python 2. |
| 611 | |
| 612 | .. |
| 613 | |
| 614 | .. bpo: 25135 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 615 | .. date: 9389 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 616 | .. nonce: gVHNy- |
| 617 | .. section: Library |
| 618 | |
| 619 | Make deque_clear() safer by emptying the deque before clearing. This helps |
| 620 | avoid possible reentrancy issues. |
| 621 | |
| 622 | .. |
| 623 | |
| 624 | .. bpo: 19143 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 625 | .. date: 9388 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 626 | .. nonce: 76SBSO |
| 627 | .. section: Library |
| 628 | |
| 629 | platform module now reads Windows version from kernel32.dll to avoid |
| 630 | compatibility shims. |
| 631 | |
| 632 | .. |
| 633 | |
| 634 | .. bpo: 25092 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 635 | .. date: 9387 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 636 | .. nonce: fQ37Ac |
| 637 | .. section: Library |
| 638 | |
| 639 | Fix datetime.strftime() failure when errno was already set to EINVAL. |
| 640 | |
| 641 | .. |
| 642 | |
| 643 | .. bpo: 23517 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 644 | .. date: 9386 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 645 | .. nonce: 3ABmf1 |
| 646 | .. section: Library |
| 647 | |
| 648 | Fix rounding in fromtimestamp() and utcfromtimestamp() methods of |
| 649 | datetime.datetime: microseconds are now rounded to nearest with ties going |
| 650 | to nearest even integer (ROUND_HALF_EVEN), instead of being rounding towards |
| 651 | minus infinity (ROUND_FLOOR). It's important that these methods use the same |
| 652 | rounding mode than datetime.timedelta to keep the property: |
| 653 | (datetime(1970,1,1) + timedelta(seconds=t)) == datetime.utcfromtimestamp(t). |
| 654 | It also the rounding mode used by round(float) for example. |
| 655 | |
| 656 | .. |
| 657 | |
| 658 | .. bpo: 25155 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 659 | .. date: 9385 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 660 | .. nonce: JiETzD |
| 661 | .. section: Library |
| 662 | |
| 663 | Fix datetime.datetime.now() and datetime.datetime.utcnow() on Windows to |
| 664 | support date after year 2038. It was a regression introduced in Python |
| 665 | 3.5.0. |
| 666 | |
| 667 | .. |
| 668 | |
| 669 | .. bpo: 25108 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 670 | .. date: 9384 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 671 | .. nonce: zGPbgA |
| 672 | .. section: Library |
| 673 | |
| 674 | Omitted internal frames in traceback functions print_stack(), |
| 675 | format_stack(), and extract_stack() called without arguments. |
| 676 | |
| 677 | .. |
| 678 | |
| 679 | .. bpo: 25118 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 680 | .. date: 9383 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 681 | .. nonce: wGm1u6 |
| 682 | .. section: Library |
| 683 | |
| 684 | Fix a regression of Python 3.5.0 in os.waitpid() on Windows. |
| 685 | |
| 686 | .. |
| 687 | |
| 688 | .. bpo: 24684 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 689 | .. date: 9382 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 690 | .. nonce: t4T77O |
| 691 | .. section: Library |
| 692 | |
| 693 | socket.socket.getaddrinfo() now calls PyUnicode_AsEncodedString() instead of |
| 694 | calling the encode() method of the host, to handle correctly custom string |
| 695 | with an encode() method which doesn't return a byte string. The encoder of |
| 696 | the IDNA codec is now called directly instead of calling the encode() method |
| 697 | of the string. |
| 698 | |
| 699 | .. |
| 700 | |
| 701 | .. bpo: 25060 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 702 | .. date: 9381 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 703 | .. nonce: zLdvIk |
| 704 | .. section: Library |
| 705 | |
| 706 | Correctly compute stack usage of the BUILD_MAP opcode. |
| 707 | |
| 708 | .. |
| 709 | |
| 710 | .. bpo: 24857 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 711 | .. date: 9380 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 712 | .. nonce: PpJWZ9 |
| 713 | .. section: Library |
| 714 | |
| 715 | Comparing call_args to a long sequence now correctly returns a boolean |
| 716 | result instead of raising an exception. Patch by A Kaptur. |
| 717 | |
| 718 | .. |
| 719 | |
| 720 | .. bpo: 23144 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 721 | .. date: 9379 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 722 | .. nonce: cLf67X |
| 723 | .. section: Library |
| 724 | |
| 725 | Make sure that HTMLParser.feed() returns all the data, even when |
| 726 | convert_charrefs is True. |
| 727 | |
| 728 | .. |
| 729 | |
| 730 | .. bpo: 24982 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 731 | .. date: 9378 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 732 | .. nonce: sGMMAR |
| 733 | .. section: Library |
| 734 | |
| 735 | shutil.make_archive() with the "zip" format now adds entries for directories |
| 736 | (including empty directories) in ZIP file. |
| 737 | |
| 738 | .. |
| 739 | |
| 740 | .. bpo: 25019 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 741 | .. date: 9377 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 742 | .. nonce: JQJlOZ |
| 743 | .. section: Library |
| 744 | |
| 745 | Fixed a crash caused by setting non-string key of expat parser. Based on |
| 746 | patch by John Leitch. |
| 747 | |
| 748 | .. |
| 749 | |
| 750 | .. bpo: 16180 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 751 | .. date: 9376 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 752 | .. nonce: 6IUcNS |
| 753 | .. section: Library |
| 754 | |
| 755 | Exit pdb if file has syntax error, instead of trapping user in an infinite |
| 756 | loop. Patch by Xavier de Gaye. |
| 757 | |
| 758 | .. |
| 759 | |
| 760 | .. bpo: 24891 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 761 | .. date: 9375 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 762 | .. nonce: ddVmHS |
| 763 | .. section: Library |
| 764 | |
| 765 | Fix a race condition at Python startup if the file descriptor of stdin (0), |
| 766 | stdout (1) or stderr (2) is closed while Python is creating sys.stdin, |
| 767 | sys.stdout and sys.stderr objects. These attributes are now set to None if |
| 768 | the creation of the object failed, instead of raising an OSError exception. |
| 769 | Initial patch written by Marco Paolini. |
| 770 | |
| 771 | .. |
| 772 | |
| 773 | .. bpo: 24992 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 774 | .. date: 9374 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 775 | .. nonce: 5sqF74 |
| 776 | .. section: Library |
| 777 | |
| 778 | Fix error handling and a race condition (related to garbage collection) in |
| 779 | collections.OrderedDict constructor. |
| 780 | |
| 781 | .. |
| 782 | |
| 783 | .. bpo: 24881 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 784 | .. date: 9373 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 785 | .. nonce: ZoVZXu |
| 786 | .. section: Library |
| 787 | |
| 788 | Fixed setting binary mode in Python implementation of FileIO on Windows and |
| 789 | Cygwin. Patch from Akira Li. |
| 790 | |
| 791 | .. |
| 792 | |
| 793 | .. bpo: 25578 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 794 | .. date: 9372 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 795 | .. nonce: G6S-ft |
| 796 | .. section: Library |
| 797 | |
| 798 | Fix (another) memory leak in SSLSocket.getpeercer(). |
| 799 | |
| 800 | .. |
| 801 | |
| 802 | .. bpo: 25530 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 803 | .. date: 9371 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 804 | .. nonce: hDFkwu |
| 805 | .. section: Library |
| 806 | |
| 807 | Disable the vulnerable SSLv3 protocol by default when creating |
| 808 | ssl.SSLContext. |
| 809 | |
| 810 | .. |
| 811 | |
| 812 | .. bpo: 25569 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 813 | .. date: 9370 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 814 | .. nonce: CfvQjK |
| 815 | .. section: Library |
| 816 | |
| 817 | Fix memory leak in SSLSocket.getpeercert(). |
| 818 | |
| 819 | .. |
| 820 | |
| 821 | .. bpo: 25471 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 822 | .. date: 9369 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 823 | .. nonce: T0A02M |
| 824 | .. section: Library |
| 825 | |
| 826 | Sockets returned from accept() shouldn't appear to be nonblocking. |
| 827 | |
| 828 | .. |
| 829 | |
| 830 | .. bpo: 25319 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 831 | .. date: 9368 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 832 | .. nonce: iyuglv |
| 833 | .. section: Library |
| 834 | |
| 835 | When threading.Event is reinitialized, the underlying condition should use a |
| 836 | regular lock rather than a recursive lock. |
| 837 | |
| 838 | .. |
| 839 | |
| 840 | .. bpo: 21112 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 841 | .. date: 9367 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 842 | .. nonce: vSFU1r |
| 843 | .. section: Library |
| 844 | |
| 845 | Fix regression in unittest.expectedFailure on subclasses. Patch from Berker |
| 846 | Peksag. |
| 847 | |
| 848 | .. |
| 849 | |
| 850 | .. bpo: 24764 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 851 | .. date: 9366 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 852 | .. nonce: QwFZ2S |
| 853 | .. section: Library |
| 854 | |
| 855 | cgi.FieldStorage.read_multi() now ignores the Content-Length header in part |
| 856 | headers. Patch written by Peter Landry and reviewed by Pierre Quentel. |
| 857 | |
| 858 | .. |
| 859 | |
| 860 | .. bpo: 24913 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 861 | .. date: 9365 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 862 | .. nonce: p2ZAJ4 |
| 863 | .. section: Library |
| 864 | |
| 865 | Fix overrun error in deque.index(). Found by John Leitch and Bryce Darling. |
| 866 | |
| 867 | .. |
| 868 | |
| 869 | .. bpo: 24774 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 870 | .. date: 9364 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 871 | .. nonce: xLbskG |
| 872 | .. section: Library |
| 873 | |
| 874 | Fix docstring in http.server.test. Patch from Chiu-Hsiang Hsu. |
| 875 | |
| 876 | .. |
| 877 | |
| 878 | .. bpo: 21159 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 879 | .. date: 9363 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 880 | .. nonce: ochL5W |
| 881 | .. section: Library |
| 882 | |
| 883 | Improve message in configparser.InterpolationMissingOptionError. Patch from |
| 884 | Łukasz Langa. |
| 885 | |
| 886 | .. |
| 887 | |
| 888 | .. bpo: 20362 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 889 | .. date: 9362 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 890 | .. nonce: 5aP_Ri |
| 891 | .. section: Library |
| 892 | |
| 893 | Honour TestCase.longMessage correctly in assertRegex. Patch from Ilia |
| 894 | Kurenkov. |
| 895 | |
| 896 | .. |
| 897 | |
| 898 | .. bpo: 23572 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 899 | .. date: 9361 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 900 | .. nonce: QhQ9RD |
| 901 | .. section: Library |
| 902 | |
| 903 | Fixed functools.singledispatch on classes with falsy metaclasses. Patch by |
| 904 | Ethan Furman. |
| 905 | |
| 906 | .. |
| 907 | |
| 908 | .. bpo: 0 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 909 | .. date: 9360 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 910 | .. nonce: DO1sFa |
| 911 | .. section: Library |
| 912 | |
| 913 | asyncio: ensure_future() now accepts awaitable objects. |
| 914 | |
| 915 | .. |
| 916 | |
| 917 | .. bpo: 15348 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 918 | .. date: 9359 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 919 | .. nonce: d1Fg01 |
| 920 | .. section: IDLE |
| 921 | |
| 922 | Stop the debugger engine (normally in a user process) before closing the |
| 923 | debugger window (running in the IDLE process). This prevents the |
| 924 | RuntimeErrors that were being caught and ignored. |
| 925 | |
| 926 | .. |
| 927 | |
| 928 | .. bpo: 24455 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 929 | .. date: 9358 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 930 | .. nonce: x6YqtE |
| 931 | .. section: IDLE |
| 932 | |
| 933 | Prevent IDLE from hanging when a) closing the shell while the debugger is |
| 934 | active (15347); b) closing the debugger with the [X] button (15348); and c) |
| 935 | activating the debugger when already active (24455). The patch by Mark |
| 936 | Roseman does this by making two changes. 1. Suspend and resume the |
| 937 | gui.interaction method with the tcl vwait mechanism intended for this |
| 938 | purpose (instead of root.mainloop & .quit). 2. In gui.run, allow any |
| 939 | existing interaction to terminate first. |
| 940 | |
| 941 | .. |
| 942 | |
| 943 | .. bpo: 0 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 944 | .. date: 9357 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 945 | .. nonce: Yp9LRY |
| 946 | .. section: IDLE |
| 947 | |
| 948 | Change 'The program' to 'Your program' in an IDLE 'kill program?' message to |
| 949 | make it clearer that the program referred to is the currently running user |
| 950 | program, not IDLE itself. |
| 951 | |
| 952 | .. |
| 953 | |
| 954 | .. bpo: 24750 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 955 | .. date: 9356 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 956 | .. nonce: xgsi-K |
| 957 | .. section: IDLE |
| 958 | |
| 959 | Improve the appearance of the IDLE editor window status bar. Patch by Mark |
| 960 | Roseman. |
| 961 | |
| 962 | .. |
| 963 | |
| 964 | .. bpo: 25313 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 965 | .. date: 9355 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 966 | .. nonce: xMXHpO |
| 967 | .. section: IDLE |
| 968 | |
| 969 | Change the handling of new built-in text color themes to better address the |
| 970 | compatibility problem introduced by the addition of IDLE Dark. Consistently |
| 971 | use the revised idleConf.CurrentTheme everywhere in idlelib. |
| 972 | |
| 973 | .. |
| 974 | |
| 975 | .. bpo: 24782 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 976 | .. date: 9354 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 977 | .. nonce: RgIPYE |
| 978 | .. section: IDLE |
| 979 | |
| 980 | Extension configuration is now a tab in the IDLE Preferences dialog rather |
| 981 | than a separate dialog. The former tabs are now a sorted list. Patch by |
| 982 | Mark Roseman. |
| 983 | |
| 984 | .. |
| 985 | |
| 986 | .. bpo: 22726 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 987 | .. date: 9353 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 988 | .. nonce: x8T0dA |
| 989 | .. section: IDLE |
| 990 | |
| 991 | Re-activate the config dialog help button with some content about the other |
| 992 | buttons and the new IDLE Dark theme. |
| 993 | |
| 994 | .. |
| 995 | |
| 996 | .. bpo: 24820 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 997 | .. date: 9352 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 998 | .. nonce: TFPJhr |
| 999 | .. section: IDLE |
| 1000 | |
| 1001 | IDLE now has an 'IDLE Dark' built-in text color theme. It is more or less |
| 1002 | IDLE Classic inverted, with a cobalt blue background. Strings, comments, |
| 1003 | keywords, ... are still green, red, orange, ... . To use it with IDLEs |
| 1004 | released before November 2015, hit the 'Save as New Custom Theme' button and |
| 1005 | enter a new name, such as 'Custom Dark'. The custom theme will work with |
| 1006 | any IDLE release, and can be modified. |
| 1007 | |
| 1008 | .. |
| 1009 | |
| 1010 | .. bpo: 25224 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1011 | .. date: 9351 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1012 | .. nonce: 5Llwo4 |
| 1013 | .. section: IDLE |
| 1014 | |
| 1015 | README.txt is now an idlelib index for IDLE developers and curious users. |
| 1016 | The previous user content is now in the IDLE doc chapter. 'IDLE' now means |
| 1017 | 'Integrated Development and Learning Environment'. |
| 1018 | |
| 1019 | .. |
| 1020 | |
| 1021 | .. bpo: 24820 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1022 | .. date: 9350 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1023 | .. nonce: ZUz9Fn |
| 1024 | .. section: IDLE |
| 1025 | |
| 1026 | Users can now set breakpoint colors in Settings -> Custom Highlighting. |
| 1027 | Original patch by Mark Roseman. |
| 1028 | |
| 1029 | .. |
| 1030 | |
| 1031 | .. bpo: 24972 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1032 | .. date: 9349 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1033 | .. nonce: uc0uNo |
| 1034 | .. section: IDLE |
| 1035 | |
| 1036 | Inactive selection background now matches active selection background, as |
| 1037 | configured by users, on all systems. Found items are now always highlighted |
| 1038 | on Windows. Initial patch by Mark Roseman. |
| 1039 | |
| 1040 | .. |
| 1041 | |
| 1042 | .. bpo: 24570 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1043 | .. date: 9348 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1044 | .. nonce: s3EkNn |
| 1045 | .. section: IDLE |
| 1046 | |
| 1047 | Idle: make calltip and completion boxes appear on Macs affected by a tk |
| 1048 | regression. Initial patch by Mark Roseman. |
| 1049 | |
| 1050 | .. |
| 1051 | |
| 1052 | .. bpo: 24988 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1053 | .. date: 9347 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1054 | .. nonce: tXqq4T |
| 1055 | .. section: IDLE |
| 1056 | |
| 1057 | Idle ScrolledList context menus (used in debugger) now work on Mac Aqua. |
| 1058 | Patch by Mark Roseman. |
| 1059 | |
| 1060 | .. |
| 1061 | |
| 1062 | .. bpo: 24801 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1063 | .. date: 9346 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1064 | .. nonce: -bj_Ou |
| 1065 | .. section: IDLE |
| 1066 | |
| 1067 | Make right-click for context menu work on Mac Aqua. Patch by Mark Roseman. |
| 1068 | |
| 1069 | .. |
| 1070 | |
| 1071 | .. bpo: 25173 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1072 | .. date: 9345 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1073 | .. nonce: EZzrPg |
| 1074 | .. section: IDLE |
| 1075 | |
| 1076 | Associate tkinter messageboxes with a specific widget. For Mac OSX, make |
| 1077 | them a 'sheet'. Patch by Mark Roseman. |
| 1078 | |
| 1079 | .. |
| 1080 | |
| 1081 | .. bpo: 25198 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1082 | .. date: 9344 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1083 | .. nonce: -j_BV7 |
| 1084 | .. section: IDLE |
| 1085 | |
Serhiy Storchaka | 3f819ca | 2018-10-31 02:26:06 +0200 | [diff] [blame] | 1086 | Enhance the initial html viewer now used for Idle Help. Properly indent |
| 1087 | fixed-pitch text (patch by Mark Roseman). Give code snippet a very |
| 1088 | Sphinx-like light blueish-gray background. Re-use initial width and height |
| 1089 | set by users for shell and editor. When the Table of Contents (TOC) menu is |
| 1090 | used, put the section header at the top of the screen. |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1091 | |
| 1092 | .. |
| 1093 | |
| 1094 | .. bpo: 25225 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1095 | .. date: 9343 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1096 | .. nonce: 9pvdq6 |
| 1097 | .. section: IDLE |
| 1098 | |
| 1099 | Condense and rewrite Idle doc section on text colors. |
| 1100 | |
| 1101 | .. |
| 1102 | |
| 1103 | .. bpo: 21995 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1104 | .. date: 9342 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1105 | .. nonce: C5Rmzx |
| 1106 | .. section: IDLE |
| 1107 | |
| 1108 | Explain some differences between IDLE and console Python. |
| 1109 | |
| 1110 | .. |
| 1111 | |
| 1112 | .. bpo: 22820 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1113 | .. date: 9341 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1114 | .. nonce: hix_8X |
| 1115 | .. section: IDLE |
| 1116 | |
| 1117 | Explain need for *print* when running file from Idle editor. |
| 1118 | |
| 1119 | .. |
| 1120 | |
| 1121 | .. bpo: 25224 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1122 | .. date: 9340 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1123 | .. nonce: UVMYQq |
| 1124 | .. section: IDLE |
| 1125 | |
| 1126 | Doc: augment Idle feature list and no-subprocess section. |
| 1127 | |
| 1128 | .. |
| 1129 | |
| 1130 | .. bpo: 25219 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1131 | .. date: 9339 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1132 | .. nonce: 8_9DYg |
| 1133 | .. section: IDLE |
| 1134 | |
| 1135 | Update doc for Idle command line options. Some were missing and notes were |
| 1136 | not correct. |
| 1137 | |
| 1138 | .. |
| 1139 | |
| 1140 | .. bpo: 24861 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1141 | .. date: 9338 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1142 | .. nonce: Ecg2yT |
| 1143 | .. section: IDLE |
| 1144 | |
| 1145 | Most of idlelib is private and subject to change. Use idleib.idle.* to start |
| 1146 | Idle. See idlelib.__init__.__doc__. |
| 1147 | |
| 1148 | .. |
| 1149 | |
| 1150 | .. bpo: 25199 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1151 | .. date: 9337 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1152 | .. nonce: ih7yY3 |
| 1153 | .. section: IDLE |
| 1154 | |
| 1155 | Idle: add synchronization comments for future maintainers. |
| 1156 | |
| 1157 | .. |
| 1158 | |
| 1159 | .. bpo: 16893 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1160 | .. date: 9336 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1161 | .. nonce: bZtPgJ |
| 1162 | .. section: IDLE |
| 1163 | |
| 1164 | Replace help.txt with help.html for Idle doc display. The new |
| 1165 | idlelib/help.html is rstripped Doc/build/html/library/idle.html. It looks |
| 1166 | better than help.txt and will better document Idle as released. The tkinter |
| 1167 | html viewer that works for this file was written by Mark Roseman. The now |
| 1168 | unused EditorWindow.HelpDialog class and helt.txt file are deprecated. |
| 1169 | |
| 1170 | .. |
| 1171 | |
| 1172 | .. bpo: 24199 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1173 | .. date: 9335 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1174 | .. nonce: VKnZEv |
| 1175 | .. section: IDLE |
| 1176 | |
| 1177 | Deprecate unused idlelib.idlever with possible removal in 3.6. |
| 1178 | |
| 1179 | .. |
| 1180 | |
| 1181 | .. bpo: 24790 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1182 | .. date: 9334 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1183 | .. nonce: hD1hlj |
| 1184 | .. section: IDLE |
| 1185 | |
| 1186 | Remove extraneous code (which also create 2 & 3 conflicts). |
| 1187 | |
| 1188 | .. |
| 1189 | |
| 1190 | .. bpo: 22558 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1191 | .. date: 9333 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1192 | .. nonce: Pk02YC |
| 1193 | .. section: Documentation |
| 1194 | |
| 1195 | Add remaining doc links to source code for Python-coded modules. Patch by |
| 1196 | Yoni Lavi. |
| 1197 | |
| 1198 | .. |
| 1199 | |
| 1200 | .. bpo: 12067 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1201 | .. date: 9332 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1202 | .. nonce: nLD2M- |
| 1203 | .. section: Documentation |
| 1204 | |
| 1205 | Rewrite Comparisons section in the Expressions chapter of the language |
| 1206 | reference. Some of the details of comparing mixed types were incorrect or |
| 1207 | ambiguous. NotImplemented is only relevant at a lower level than the |
| 1208 | Expressions chapter. Added details of comparing range() objects, and default |
| 1209 | behaviour and consistency suggestions for user-defined classes. Patch from |
| 1210 | Andy Maier. |
| 1211 | |
| 1212 | .. |
| 1213 | |
| 1214 | .. bpo: 24952 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1215 | .. date: 9331 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1216 | .. nonce: RHhFPE |
| 1217 | .. section: Documentation |
| 1218 | |
| 1219 | Clarify the default size argument of stack_size() in the "threading" and |
| 1220 | "_thread" modules. Patch from Mattip. |
| 1221 | |
| 1222 | .. |
| 1223 | |
| 1224 | .. bpo: 23725 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1225 | .. date: 9330 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1226 | .. nonce: 49TZ5f |
| 1227 | .. section: Documentation |
| 1228 | |
| 1229 | Overhaul tempfile docs. Note deprecated status of mktemp. Patch from |
| 1230 | Zbigniew Jędrzejewski-Szmek. |
| 1231 | |
| 1232 | .. |
| 1233 | |
| 1234 | .. bpo: 24808 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1235 | .. date: 9329 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1236 | .. nonce: MGjc3F |
| 1237 | .. section: Documentation |
| 1238 | |
| 1239 | Update the types of some PyTypeObject fields. Patch by Joseph Weston. |
| 1240 | |
| 1241 | .. |
| 1242 | |
| 1243 | .. bpo: 22812 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1244 | .. date: 9328 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1245 | .. nonce: kLCF0G |
| 1246 | .. section: Documentation |
| 1247 | |
| 1248 | Fix unittest discovery examples. Patch from Pam McA'Nulty. |
| 1249 | |
| 1250 | .. |
| 1251 | |
| 1252 | .. bpo: 25449 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1253 | .. date: 9327 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1254 | .. nonce: MP6KNs |
| 1255 | .. section: Tests |
| 1256 | |
| 1257 | Added tests for OrderedDict subclasses. |
| 1258 | |
| 1259 | .. |
| 1260 | |
| 1261 | .. bpo: 25099 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1262 | .. date: 9326 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1263 | .. nonce: tJQOWx |
| 1264 | .. section: Tests |
| 1265 | |
| 1266 | Make test_compileall not fail when an entry on sys.path cannot be written to |
| 1267 | (commonly seen in administrative installs on Windows). |
| 1268 | |
| 1269 | .. |
| 1270 | |
| 1271 | .. bpo: 23919 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1272 | .. date: 9325 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1273 | .. nonce: vJnjaq |
| 1274 | .. section: Tests |
| 1275 | |
| 1276 | Prevents assert dialogs appearing in the test suite. |
| 1277 | |
| 1278 | .. |
| 1279 | |
| 1280 | .. bpo: 0 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1281 | .. date: 9324 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1282 | .. nonce: X-Bk5l |
| 1283 | .. section: Tests |
| 1284 | |
| 1285 | ``PCbuild\rt.bat`` now accepts an unlimited number of arguments to pass |
| 1286 | along to regrtest.py. Previously there was a limit of 9. |
| 1287 | |
| 1288 | .. |
| 1289 | |
| 1290 | .. bpo: 24915 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1291 | .. date: 9323 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1292 | .. nonce: PgD3Cx |
| 1293 | .. section: Build |
| 1294 | |
| 1295 | Add LLVM support for PGO builds and use the test suite to generate the |
| 1296 | profile data. Initial patch by Alecsandru Patrascu of Intel. |
| 1297 | |
| 1298 | .. |
| 1299 | |
| 1300 | .. bpo: 24910 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1301 | .. date: 9322 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1302 | .. nonce: ZZdfl0 |
| 1303 | .. section: Build |
| 1304 | |
| 1305 | Windows MSIs now have unique display names. |
| 1306 | |
| 1307 | .. |
| 1308 | |
| 1309 | .. bpo: 24986 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1310 | .. date: 9321 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1311 | .. nonce: 1WyXeU |
| 1312 | .. section: Build |
| 1313 | |
| 1314 | It is now possible to build Python on Windows without errors when external |
| 1315 | libraries are not available. |
| 1316 | |
| 1317 | .. |
| 1318 | |
| 1319 | .. bpo: 25450 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1320 | .. date: 9320 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1321 | .. nonce: X4xlWf |
| 1322 | .. section: Windows |
| 1323 | |
| 1324 | Updates shortcuts to start Python in installation directory. |
| 1325 | |
| 1326 | .. |
| 1327 | |
| 1328 | .. bpo: 25164 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1329 | .. date: 9319 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1330 | .. nonce: FHVOOA |
| 1331 | .. section: Windows |
| 1332 | |
| 1333 | Changes default all-users install directory to match per-user directory. |
| 1334 | |
| 1335 | .. |
| 1336 | |
| 1337 | .. bpo: 25143 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1338 | .. date: 9318 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1339 | .. nonce: hmxsia |
| 1340 | .. section: Windows |
| 1341 | |
| 1342 | Improves installer error messages for unsupported platforms. |
| 1343 | |
| 1344 | .. |
| 1345 | |
| 1346 | .. bpo: 25163 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1347 | .. date: 9317 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1348 | .. nonce: uCRe8H |
| 1349 | .. section: Windows |
| 1350 | |
| 1351 | Display correct directory in installer when using non-default settings. |
| 1352 | |
| 1353 | .. |
| 1354 | |
| 1355 | .. bpo: 25361 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1356 | .. date: 9316 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1357 | .. nonce: GETaSY |
| 1358 | .. section: Windows |
| 1359 | |
| 1360 | Disables use of SSE2 instructions in Windows 32-bit build |
| 1361 | |
| 1362 | .. |
| 1363 | |
| 1364 | .. bpo: 25089 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1365 | .. date: 9315 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1366 | .. nonce: n_YJgw |
| 1367 | .. section: Windows |
| 1368 | |
| 1369 | Adds logging to installer for case where launcher is not selected on |
| 1370 | upgrade. |
| 1371 | |
| 1372 | .. |
| 1373 | |
| 1374 | .. bpo: 25165 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1375 | .. date: 9314 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1376 | .. nonce: aUTN1e |
| 1377 | .. section: Windows |
| 1378 | |
| 1379 | Windows uninstallation should not remove launcher if other versions remain |
| 1380 | |
| 1381 | .. |
| 1382 | |
| 1383 | .. bpo: 25112 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1384 | .. date: 9313 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1385 | .. nonce: frdKij |
| 1386 | .. section: Windows |
| 1387 | |
| 1388 | py.exe launcher is missing icons |
| 1389 | |
| 1390 | .. |
| 1391 | |
| 1392 | .. bpo: 25102 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1393 | .. date: 9312 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1394 | .. nonce: 6y6Akl |
| 1395 | .. section: Windows |
| 1396 | |
| 1397 | Windows installer does not precompile for -O or -OO. |
| 1398 | |
| 1399 | .. |
| 1400 | |
| 1401 | .. bpo: 25081 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1402 | .. date: 9311 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1403 | .. nonce: dcRCTO |
| 1404 | .. section: Windows |
| 1405 | |
| 1406 | Makes Back button in installer go back to upgrade page when upgrading. |
| 1407 | |
| 1408 | .. |
| 1409 | |
| 1410 | .. bpo: 25091 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1411 | .. date: 9310 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1412 | .. nonce: 1u-VKy |
| 1413 | .. section: Windows |
| 1414 | |
| 1415 | Increases font size of the installer. |
| 1416 | |
| 1417 | .. |
| 1418 | |
| 1419 | .. bpo: 25126 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1420 | .. date: 9309 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1421 | .. nonce: ANx3DW |
| 1422 | .. section: Windows |
| 1423 | |
| 1424 | Clarifies that the non-web installer will download some components. |
| 1425 | |
| 1426 | .. |
| 1427 | |
| 1428 | .. bpo: 25213 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1429 | .. date: 9308 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1430 | .. nonce: KGmXoe |
| 1431 | .. section: Windows |
| 1432 | |
| 1433 | Restores requestedExecutionLevel to manifest to disable UAC virtualization. |
| 1434 | |
| 1435 | .. |
| 1436 | |
| 1437 | .. bpo: 25022 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1438 | .. date: 9307 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1439 | .. nonce: vAt_zr |
| 1440 | .. section: Windows |
| 1441 | |
| 1442 | Removed very outdated PC/example_nt/ directory. |
| 1443 | |
| 1444 | .. |
| 1445 | |
| 1446 | .. bpo: 25440 |
Ned Deily | aee5df5 | 2018-06-27 18:45:50 -0400 | [diff] [blame] | 1447 | .. date: 9306 |
larryhastings | f9f1734 | 2017-09-04 13:30:19 -0700 | [diff] [blame] | 1448 | .. nonce: 5xhyGr |
| 1449 | .. section: Tools/Demos |
| 1450 | |
| 1451 | Fix output of python-config --extension-suffix. |