blob: d613fd5d928b6545efe8271e2fbf23d0e2a8a498 [file] [log] [blame]
larryhastingsf9f17342017-09-04 13:30:19 -07001.. bpo: 27704
Ned Deilyaee5df52018-06-27 18:45:50 -04002.. date: 9455
larryhastingsf9f17342017-09-04 13:30:19 -07003.. nonce: RUxzHf
4.. release date: 2016-08-15
5.. section: Core and Builtins
6
7Optimized creating bytes and bytearray from byte-like objects and iterables.
8Speed up to 3 times for short objects. Original patch by Naoki Inada.
9
10..
11
12.. bpo: 26823
Ned Deilyaee5df52018-06-27 18:45:50 -040013.. date: 9454
larryhastingsf9f17342017-09-04 13:30:19 -070014.. nonce: UWORiU
15.. section: Core and Builtins
16
17Large sections of repeated lines in tracebacks are now abbreviated as
18"[Previous line repeated {count} more times]" by the builtin traceback
19rendering. Patch by Emanuel Barry.
20
21..
22
23.. bpo: 27574
Ned Deilyaee5df52018-06-27 18:45:50 -040024.. date: 9453
larryhastingsf9f17342017-09-04 13:30:19 -070025.. nonce: q73Tss
26.. section: Core and Builtins
27
28Decreased an overhead of parsing keyword arguments in functions implemented
29with using Argument Clinic.
30
31..
32
33.. bpo: 22557
Ned Deilyaee5df52018-06-27 18:45:50 -040034.. date: 9452
larryhastingsf9f17342017-09-04 13:30:19 -070035.. nonce: Hta2Rz
36.. section: Core and Builtins
37
38Now importing already imported modules is up to 2.5 times faster.
39
40..
41
42.. bpo: 17596
Ned Deilyaee5df52018-06-27 18:45:50 -040043.. date: 9451
larryhastingsf9f17342017-09-04 13:30:19 -070044.. nonce: XgbA9V
45.. section: Core and Builtins
46
47Include <wincrypt.h> to help with Min GW building.
48
49..
50
51.. bpo: 17599
Ned Deilyaee5df52018-06-27 18:45:50 -040052.. date: 9450
larryhastingsf9f17342017-09-04 13:30:19 -070053.. nonce: noy7o1
54.. section: Core and Builtins
55
56On Windows, rename the privately defined REPARSE_DATA_BUFFER structure to
57avoid conflicting with the definition from Min GW.
58
59..
60
61.. bpo: 27507
Ned Deilyaee5df52018-06-27 18:45:50 -040062.. date: 9449
larryhastingsf9f17342017-09-04 13:30:19 -070063.. nonce: 3pX0Be
64.. section: Core and Builtins
65
66Add integer overflow check in bytearray.extend(). Patch by Xiang Zhang.
67
68..
69
70.. bpo: 27581
Ned Deilyaee5df52018-06-27 18:45:50 -040071.. date: 9448
larryhastingsf9f17342017-09-04 13:30:19 -070072.. nonce: KezjNt
73.. section: Core and Builtins
74
75Don't rely on wrapping for overflow check in PySequence_Tuple(). Patch by
76Xiang Zhang.
77
78..
79
80.. bpo: 1621
Ned Deilyaee5df52018-06-27 18:45:50 -040081.. date: 9447
larryhastingsf9f17342017-09-04 13:30:19 -070082.. nonce: _FZWTr
83.. section: Core and Builtins
84
85Avoid signed integer overflow in list and tuple operations. Patch by Xiang
86Zhang.
87
88..
89
90.. bpo: 27419
Ned Deilyaee5df52018-06-27 18:45:50 -040091.. date: 9446
larryhastingsf9f17342017-09-04 13:30:19 -070092.. nonce: YaGodL
93.. section: Core and Builtins
94
95Standard __import__() no longer look up "__import__" in globals or builtins
96for importing submodules or "from import". Fixed a crash if raise a warning
97about unabling to resolve package from __spec__ or __package__.
98
99..
100
101.. bpo: 27083
Ned Deilyaee5df52018-06-27 18:45:50 -0400102.. date: 9445
larryhastingsf9f17342017-09-04 13:30:19 -0700103.. nonce: F4ZT1C
104.. section: Core and Builtins
105
106Respect the PYTHONCASEOK environment variable under Windows.
107
108..
109
110.. bpo: 27514
Ned Deilyaee5df52018-06-27 18:45:50 -0400111.. date: 9444
larryhastingsf9f17342017-09-04 13:30:19 -0700112.. nonce: NLbwPG
113.. section: Core and Builtins
114
115Make having too many statically nested blocks a SyntaxError instead of
116SystemError.
117
118..
119
120.. bpo: 27366
Ned Deilyaee5df52018-06-27 18:45:50 -0400121.. date: 9443
larryhastingsf9f17342017-09-04 13:30:19 -0700122.. nonce: VrInsj
123.. section: Core and Builtins
124
Stéphane Wirtel12e696b2018-10-27 00:58:26 +0200125Implemented :pep:`487` (Simpler customization of class creation). Upon
larryhastingsf9f17342017-09-04 13:30:19 -0700126subclassing, the __init_subclass__ classmethod is called on the base class.
127Descriptors are initialized with __set_name__ after class creation.
128
129..
130
131.. bpo: 26027
Ned Deilyaee5df52018-06-27 18:45:50 -0400132.. date: 9442
larryhastingsf9f17342017-09-04 13:30:19 -0700133.. nonce: nfVMKM
134.. section: Library
135
Stéphane Wirtel12e696b2018-10-27 00:58:26 +0200136Add :pep:`519`/__fspath__() support to the os and os.path modules. Includes
larryhastingsf9f17342017-09-04 13:30:19 -0700137code from Jelle Zijlstra. (See also: bpo-27524)
138
139..
140
141.. bpo: 27598
Ned Deilyaee5df52018-06-27 18:45:50 -0400142.. date: 9441
larryhastingsf9f17342017-09-04 13:30:19 -0700143.. nonce: y7PtEV
144.. section: Library
145
146Add Collections to collections.abc. Patch by Ivan Levkivskyi, docs by Neil
147Girdhar.
148
149..
150
151.. bpo: 25958
Ned Deilyaee5df52018-06-27 18:45:50 -0400152.. date: 9440
larryhastingsf9f17342017-09-04 13:30:19 -0700153.. nonce: X-V4U1
154.. section: Library
155
156Support "anti-registration" of special methods from various ABCs, like
157__hash__, __iter__ or __len__. All these (and several more) can be set to
158None in an implementation class and the behavior will be as if the method is
159not defined at all. (Previously, this mechanism existed only for __hash__,
160to make mutable classes unhashable.) Code contributed by Andrew Barnert and
161Ivan Levkivskyi.
162
163..
164
165.. bpo: 16764
Ned Deilyaee5df52018-06-27 18:45:50 -0400166.. date: 9439
larryhastingsf9f17342017-09-04 13:30:19 -0700167.. nonce: cPbNjL
168.. section: Library
169
170Support keyword arguments to zlib.decompress(). Patch by Xiang Zhang.
171
172..
173
174.. bpo: 27736
Ned Deilyaee5df52018-06-27 18:45:50 -0400175.. date: 9438
larryhastingsf9f17342017-09-04 13:30:19 -0700176.. nonce: 8kMhpQ
177.. section: Library
178
179Prevent segfault after interpreter re-initialization due to ref count
180problem introduced in code for Issue #27038 in 3.6.0a3. Patch by Xiang
181Zhang.
182
183..
184
185.. bpo: 25628
Ned Deilyaee5df52018-06-27 18:45:50 -0400186.. date: 9437
larryhastingsf9f17342017-09-04 13:30:19 -0700187.. nonce: UcQnHF
188.. section: Library
189
190The *verbose* and *rename* parameters for collections.namedtuple are now
191keyword-only.
192
193..
194
195.. bpo: 12345
Ned Deilyaee5df52018-06-27 18:45:50 -0400196.. date: 9436
larryhastingsf9f17342017-09-04 13:30:19 -0700197.. nonce: nbAEM8
198.. section: Library
199
Stéphane Wirtel12e696b2018-10-27 00:58:26 +0200200Add mathematical constant tau to math and cmath. See also :pep:`628`.
larryhastingsf9f17342017-09-04 13:30:19 -0700201
202..
203
204.. bpo: 26823
Ned Deilyaee5df52018-06-27 18:45:50 -0400205.. date: 9435
larryhastingsf9f17342017-09-04 13:30:19 -0700206.. nonce: HcO8tR
207.. section: Library
208
209traceback.StackSummary.format now abbreviates large sections of repeated
210lines as "[Previous line repeated {count} more times]" (this change then
211further affects other traceback display operations in the module). Patch by
212Emanuel Barry.
213
214..
215
216.. bpo: 27664
Ned Deilyaee5df52018-06-27 18:45:50 -0400217.. date: 9434
larryhastingsf9f17342017-09-04 13:30:19 -0700218.. nonce: 6DJPxw
219.. section: Library
220
221Add to concurrent.futures.thread.ThreadPoolExecutor() the ability to specify
222a thread name prefix.
223
224..
225
226.. bpo: 27181
Ned Deilyaee5df52018-06-27 18:45:50 -0400227.. date: 9433
larryhastingsf9f17342017-09-04 13:30:19 -0700228.. nonce: 8aw9TZ
229.. section: Library
230
231Add geometric_mean and harmonic_mean to statistics module.
232
233..
234
235.. bpo: 27573
Ned Deilyaee5df52018-06-27 18:45:50 -0400236.. date: 9432
larryhastingsf9f17342017-09-04 13:30:19 -0700237.. nonce: B7XhTs
238.. section: Library
239
240code.interact now prints an message when exiting.
241
242..
243
244.. bpo: 6422
Ned Deilyaee5df52018-06-27 18:45:50 -0400245.. date: 9431
larryhastingsf9f17342017-09-04 13:30:19 -0700246.. nonce: iBSc45
247.. section: Library
248
249Add autorange method to timeit.Timer objects.
250
251..
252
253.. bpo: 27773
Ned Deilyaee5df52018-06-27 18:45:50 -0400254.. date: 9430
larryhastingsf9f17342017-09-04 13:30:19 -0700255.. nonce: hMSSeX
256.. section: Library
257
258Correct some memory management errors server_hostname in _ssl.wrap_socket().
259
260..
261
262.. bpo: 26750
Ned Deilyaee5df52018-06-27 18:45:50 -0400263.. date: 9429
larryhastingsf9f17342017-09-04 13:30:19 -0700264.. nonce: OQn3fr
265.. section: Library
266
267unittest.mock.create_autospec() now works properly for subclasses of
268property() and other data descriptors. Removes the never publicly used,
269never documented unittest.mock.DescriptorTypes tuple.
270
271..
272
273.. bpo: 26754
Ned Deilyaee5df52018-06-27 18:45:50 -0400274.. date: 9428
larryhastingsf9f17342017-09-04 13:30:19 -0700275.. nonce: XZqomf
276.. section: Library
277
278Undocumented support of general bytes-like objects as path in compile() and
279similar functions is now deprecated.
280
281..
282
283.. bpo: 26800
Ned Deilyaee5df52018-06-27 18:45:50 -0400284.. date: 9427
larryhastingsf9f17342017-09-04 13:30:19 -0700285.. nonce: QDcK8u
286.. section: Library
287
288Undocumented support of general bytes-like objects as paths in os functions
289is now deprecated.
290
291..
292
293.. bpo: 26981
Ned Deilyaee5df52018-06-27 18:45:50 -0400294.. date: 9426
larryhastingsf9f17342017-09-04 13:30:19 -0700295.. nonce: yhNTCf
296.. section: Library
297
298Add _order_ compatibility shim to enum.Enum for Python 2/3 code bases.
299
300..
301
302.. bpo: 27661
Ned Deilyaee5df52018-06-27 18:45:50 -0400303.. date: 9425
larryhastingsf9f17342017-09-04 13:30:19 -0700304.. nonce: 3JZckO
305.. section: Library
306
307Added tzinfo keyword argument to datetime.combine.
308
309..
310
311.. bpo: 0
Ned Deilyaee5df52018-06-27 18:45:50 -0400312.. date: 9424
larryhastingsf9f17342017-09-04 13:30:19 -0700313.. nonce: Ny9oPv
314.. section: Library
315
316In the curses module, raise an error if window.getstr() or window.instr() is
317passed a negative value.
318
319..
320
321.. bpo: 27783
Ned Deilyaee5df52018-06-27 18:45:50 -0400322.. date: 9423
larryhastingsf9f17342017-09-04 13:30:19 -0700323.. nonce: cR1jXH
324.. section: Library
325
326Fix possible usage of uninitialized memory in operator.methodcaller.
327
328..
329
330.. bpo: 27774
Ned Deilyaee5df52018-06-27 18:45:50 -0400331.. date: 9422
larryhastingsf9f17342017-09-04 13:30:19 -0700332.. nonce: FDcik1
333.. section: Library
334
335Fix possible Py_DECREF on unowned object in _sre.
336
337..
338
339.. bpo: 27760
Ned Deilyaee5df52018-06-27 18:45:50 -0400340.. date: 9421
larryhastingsf9f17342017-09-04 13:30:19 -0700341.. nonce: gxMjp4
342.. section: Library
343
344Fix possible integer overflow in binascii.b2a_qp.
345
346..
347
348.. bpo: 27758
Ned Deilyaee5df52018-06-27 18:45:50 -0400349.. date: 9420
larryhastingsf9f17342017-09-04 13:30:19 -0700350.. nonce: 0NRV03
351.. section: Library
352
353Fix possible integer overflow in the _csv module for large record lengths.
354
355..
356
357.. bpo: 27568
Ned Deilyaee5df52018-06-27 18:45:50 -0400358.. date: 9419
larryhastingsf9f17342017-09-04 13:30:19 -0700359.. nonce: OnuO9s
360.. section: Library
361
362Prevent HTTPoxy attack (CVE-2016-1000110). Ignore the HTTP_PROXY variable
363when REQUEST_METHOD environment is set, which indicates that the script is
364in CGI mode.
365
366..
367
368.. bpo: 7063
Ned Deilyaee5df52018-06-27 18:45:50 -0400369.. date: 9418
larryhastingsf9f17342017-09-04 13:30:19 -0700370.. nonce: nXsVKB
371.. section: Library
372
373Remove dead code from the "array" module's slice handling. Patch by Chuck.
374
375..
376
377.. bpo: 27656
Ned Deilyaee5df52018-06-27 18:45:50 -0400378.. date: 9417
larryhastingsf9f17342017-09-04 13:30:19 -0700379.. nonce: joTscM
380.. section: Library
381
382Do not assume sched.h defines any SCHED_* constants.
383
384..
385
386.. bpo: 27130
Ned Deilyaee5df52018-06-27 18:45:50 -0400387.. date: 9416
larryhastingsf9f17342017-09-04 13:30:19 -0700388.. nonce: SUxwXZ
389.. section: Library
390
391In the "zlib" module, fix handling of large buffers (typically 4 GiB) when
392compressing and decompressing. Previously, inputs were limited to 4 GiB,
393and compression and decompression operations did not properly handle results
394of 4 GiB.
395
396..
397
398.. bpo: 24773
Ned Deilyaee5df52018-06-27 18:45:50 -0400399.. date: 9415
larryhastingsf9f17342017-09-04 13:30:19 -0700400.. nonce: IDW05R
401.. section: Library
402
Stéphane Wirtel12e696b2018-10-27 00:58:26 +0200403Implemented :pep:`495` (Local Time Disambiguation).
larryhastingsf9f17342017-09-04 13:30:19 -0700404
405..
406
407.. bpo: 0
Ned Deilyaee5df52018-06-27 18:45:50 -0400408.. date: 9414
larryhastingsf9f17342017-09-04 13:30:19 -0700409.. nonce: lOkwM8
410.. section: Library
411
412Expose the EPOLLEXCLUSIVE constant (when it is defined) in the select
413module.
414
415..
416
417.. bpo: 27567
Ned Deilyaee5df52018-06-27 18:45:50 -0400418.. date: 9413
larryhastingsf9f17342017-09-04 13:30:19 -0700419.. nonce: bYOgyw
420.. section: Library
421
422Expose the EPOLLRDHUP and POLLRDHUP constants in the select module.
423
424..
425
426.. bpo: 1621
Ned Deilyaee5df52018-06-27 18:45:50 -0400427.. date: 9412
larryhastingsf9f17342017-09-04 13:30:19 -0700428.. nonce: 0nclmI
429.. section: Library
430
431Avoid signed int negation overflow in the "audioop" module.
432
433..
434
435.. bpo: 27533
Ned Deilyaee5df52018-06-27 18:45:50 -0400436.. date: 9411
larryhastingsf9f17342017-09-04 13:30:19 -0700437.. nonce: iDmKzV
438.. section: Library
439
440Release GIL in nt._isdir
441
442..
443
444.. bpo: 17711
Ned Deilyaee5df52018-06-27 18:45:50 -0400445.. date: 9410
larryhastingsf9f17342017-09-04 13:30:19 -0700446.. nonce: 47AILJ
447.. section: Library
448
449Fixed unpickling by the persistent ID with protocol 0. Original patch by
450Alexandre Vassalotti.
451
452..
453
454.. bpo: 27522
Ned Deilyaee5df52018-06-27 18:45:50 -0400455.. date: 9409
larryhastingsf9f17342017-09-04 13:30:19 -0700456.. nonce: 8vVz_t
457.. section: Library
458
459Avoid an unintentional reference cycle in email.feedparser.
460
461..
462
463.. bpo: 27512
Ned Deilyaee5df52018-06-27 18:45:50 -0400464.. date: 9408
larryhastingsf9f17342017-09-04 13:30:19 -0700465.. nonce: FaGwup
466.. section: Library
467
468Fix a segfault when os.fspath() called an __fspath__() method that raised an
469exception. Patch by Xiang Zhang.
470
471..
472
473.. bpo: 27714
Ned Deilyaee5df52018-06-27 18:45:50 -0400474.. date: 9407
larryhastingsf9f17342017-09-04 13:30:19 -0700475.. nonce: bUEDsI
476.. section: IDLE
477
478text_textview and test_autocomplete now pass when re-run in the same
479process. This occurs when test_idle fails when run with the -w option but
480without -jn. Fix warning from test_config.
481
482..
483
484.. bpo: 27621
Ned Deilyaee5df52018-06-27 18:45:50 -0400485.. date: 9406
larryhastingsf9f17342017-09-04 13:30:19 -0700486.. nonce: BcpOPU
487.. section: IDLE
488
489Put query response validation error messages in the query box itself instead
Stéphane Wirtel683281f2018-10-06 16:35:53 +0200490of in a separate messagebox. Redo tests to match. Add Mac OSX refinements.
larryhastingsf9f17342017-09-04 13:30:19 -0700491Original patch by Mark Roseman.
492
493..
494
495.. bpo: 27620
Ned Deilyaee5df52018-06-27 18:45:50 -0400496.. date: 9405
larryhastingsf9f17342017-09-04 13:30:19 -0700497.. nonce: TXRR6x
498.. section: IDLE
499
500Escape key now closes Query box as cancelled.
501
502..
503
504.. bpo: 27609
Ned Deilyaee5df52018-06-27 18:45:50 -0400505.. date: 9404
larryhastingsf9f17342017-09-04 13:30:19 -0700506.. nonce: MbTuKa
507.. section: IDLE
508
509IDLE: tab after initial whitespace should tab, not autocomplete. This fixes
510problem with writing docstrings at least twice indented.
511
512..
513
514.. bpo: 27609
Ned Deilyaee5df52018-06-27 18:45:50 -0400515.. date: 9403
larryhastingsf9f17342017-09-04 13:30:19 -0700516.. nonce: OBYgv_
517.. section: IDLE
518
519Explicitly return None when there are also non-None returns. In a few cases,
520reverse a condition and eliminate a return.
521
522..
523
524.. bpo: 25507
Ned Deilyaee5df52018-06-27 18:45:50 -0400525.. date: 9402
larryhastingsf9f17342017-09-04 13:30:19 -0700526.. nonce: lxf68d
527.. section: IDLE
528
529IDLE no longer runs buggy code because of its tkinter imports. Users must
530include the same imports required to run directly in Python.
531
532..
533
534.. bpo: 27173
Ned Deilyaee5df52018-06-27 18:45:50 -0400535.. date: 9401
larryhastingsf9f17342017-09-04 13:30:19 -0700536.. nonce: M-fYaV
537.. section: IDLE
538
539Add 'IDLE Modern Unix' to the built-in key sets. Make the default key set
540depend on the platform. Add tests for the changes to the config module.
541
542..
543
544.. bpo: 27452
Ned Deilyaee5df52018-06-27 18:45:50 -0400545.. date: 9400
larryhastingsf9f17342017-09-04 13:30:19 -0700546.. nonce: RtWnyR
547.. section: IDLE
548
549add line counter and crc to IDLE configHandler test dump.
550
551..
552
553.. bpo: 25805
Ned Deilyaee5df52018-06-27 18:45:50 -0400554.. date: 9399
larryhastingsf9f17342017-09-04 13:30:19 -0700555.. nonce: 9SVxXQ
556.. section: Tests
557
558Skip a test in test_pkgutil as needed that doesn't work when ``__name__ ==
559__main__``. Patch by SilentGhost.
560
561..
562
563.. bpo: 27472
Ned Deilyaee5df52018-06-27 18:45:50 -0400564.. date: 9398
larryhastingsf9f17342017-09-04 13:30:19 -0700565.. nonce: NS3L93
566.. section: Tests
567
568Add test.support.unix_shell as the path to the default shell.
569
570..
571
572.. bpo: 27369
Ned Deilyaee5df52018-06-27 18:45:50 -0400573.. date: 9397
larryhastingsf9f17342017-09-04 13:30:19 -0700574.. nonce: LG7U2D
575.. section: Tests
576
577In test_pyexpat, avoid testing an error message detail that changed in Expat
5782.2.0.
579
580..
581
582.. bpo: 27594
Ned Deilyaee5df52018-06-27 18:45:50 -0400583.. date: 9396
larryhastingsf9f17342017-09-04 13:30:19 -0700584.. nonce: w3F57B
585.. section: Tests
586
587Prevent assertion error when running test_ast with coverage enabled: ensure
588code object has a valid first line number. Patch suggested by Ivan
589Levkivskyi.
590
591..
592
593.. bpo: 27647
Ned Deilyaee5df52018-06-27 18:45:50 -0400594.. date: 9395
larryhastingsf9f17342017-09-04 13:30:19 -0700595.. nonce: -1HUR6
596.. section: Windows
597
598Update bundled Tcl/Tk to 8.6.6.
599
600..
601
602.. bpo: 27610
Ned Deilyaee5df52018-06-27 18:45:50 -0400603.. date: 9394
larryhastingsf9f17342017-09-04 13:30:19 -0700604.. nonce: O0o0mB
605.. section: Windows
606
Stéphane Wirtel12e696b2018-10-27 00:58:26 +0200607Adds :pep:`514` metadata to Windows installer
larryhastingsf9f17342017-09-04 13:30:19 -0700608
609..
610
611.. bpo: 27469
Ned Deilyaee5df52018-06-27 18:45:50 -0400612.. date: 9393
larryhastingsf9f17342017-09-04 13:30:19 -0700613.. nonce: 0GwDkX
614.. section: Windows
615
616Adds a shell extension to the launcher so that drag and drop works
617correctly.
618
619..
620
621.. bpo: 27309
Ned Deilyaee5df52018-06-27 18:45:50 -0400622.. date: 9392
larryhastingsf9f17342017-09-04 13:30:19 -0700623.. nonce: chiOo6
624.. section: Windows
625
626Enables proper Windows styles in python[w].exe manifest.
627
628..
629
630.. bpo: 27713
Ned Deilyaee5df52018-06-27 18:45:50 -0400631.. date: 9391
larryhastingsf9f17342017-09-04 13:30:19 -0700632.. nonce: _3DgXG
633.. section: Build
634
635Suppress spurious build warnings when updating importlib's bootstrap files.
636Patch by Xiang Zhang
637
638..
639
640.. bpo: 25825
Ned Deilyaee5df52018-06-27 18:45:50 -0400641.. date: 9390
larryhastingsf9f17342017-09-04 13:30:19 -0700642.. nonce: MLbdVU
643.. section: Build
644
645Correct the references to Modules/python.exp, which is required on AIX. The
646references were accidentally changed in 3.5.0a1.
647
648..
649
650.. bpo: 27453
Ned Deilyaee5df52018-06-27 18:45:50 -0400651.. date: 9389
larryhastingsf9f17342017-09-04 13:30:19 -0700652.. nonce: Pb5DBi
653.. section: Build
654
655CPP invocation in configure must use CPPFLAGS. Patch by Chi Hsuan Yen.
656
657..
658
659.. bpo: 27641
Ned Deilyaee5df52018-06-27 18:45:50 -0400660.. date: 9388
larryhastingsf9f17342017-09-04 13:30:19 -0700661.. nonce: eGzgCk
662.. section: Build
663
664The configure script now inserts comments into the makefile to prevent the
Serhiy Storchaka98a0e462018-06-10 09:46:50 +0300665pgen and _freeze_importlib executables from being cross-compiled.
larryhastingsf9f17342017-09-04 13:30:19 -0700666
667..
668
669.. bpo: 26662
Ned Deilyaee5df52018-06-27 18:45:50 -0400670.. date: 9387
larryhastingsf9f17342017-09-04 13:30:19 -0700671.. nonce: XkwRxM
672.. section: Build
673
674Set PYTHON_FOR_GEN in configure as the Python program to be used for file
675generation during the build.
676
677..
678
679.. bpo: 10910
Ned Deilyaee5df52018-06-27 18:45:50 -0400680.. date: 9386
larryhastingsf9f17342017-09-04 13:30:19 -0700681.. nonce: ZdRayb
682.. section: Build
683
684Avoid C++ compilation errors on FreeBSD and OS X. Also update FreedBSD
685version checks for the original ctype UTF-8 workaround.