summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/3.11.0a6.rst
blob: 66ffa4ffba52e51b169fd71f5f2ef834f5674d0a (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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
.. bpo: 46940
.. date: 2022-03-06-20-16-13
.. nonce: _X47Hx
.. release date: 2022-03-07
.. section: Core and Builtins

Avoid overriding :exc:`AttributeError` metadata information for nested
attribute access calls. Patch by Pablo Galindo.

..

.. bpo: 46927
.. date: 2022-03-05-12-23-58
.. nonce: URbHBi
.. section: Core and Builtins

Include the type's name in the error message for subscripting non-generic
types.

..

.. bpo: 46921
.. date: 2022-03-05-00-43-22
.. nonce: tyuPeB
.. section: Core and Builtins

Support vectorcall for ``super()``. Patch by Ken Jin.

..

.. bpo: 46841
.. date: 2022-03-03-14-31-53
.. nonce: agf-3X
.. section: Core and Builtins

Fix incorrect handling of inline cache entries when specializing
:opcode:`BINARY_OP`.

..

.. bpo: 46841
.. date: 2022-03-03-12-36-15
.. nonce: apPev2
.. section: Core and Builtins

Use an oparg to simplify the construction of helpful error messages in
:opcode:`GET_AWAITABLE`.

..

.. bpo: 46903
.. date: 2022-03-03-12-02-41
.. nonce: OzgaFZ
.. section: Core and Builtins

Make sure that str subclasses can be used as attribute names for instances
with virtual dictionaries. Fixes regression in 3.11alpha

..

.. bpo: 46841
.. date: 2022-03-03-10-46-13
.. nonce: 7CkuZx
.. section: Core and Builtins

Add more detailed specialization failure stats for :opcode:`COMPARE_OP`
followed by :opcode:`EXTENDED_ARG`.

..

.. bpo: 46891
.. date: 2022-03-02-15-04-08
.. nonce: aIAgTD
.. section: Core and Builtins

Fix bug introduced during 3.11alpha where subclasses of ``types.ModuleType``
with ``__slots__`` were not initialized correctly, resulting in an
interpreter crash.

..

.. bpo: 46841
.. date: 2022-03-01-17-47-58
.. nonce: inYQlU
.. section: Core and Builtins

Use inline caching for :opcode:`LOAD_ATTR`, :opcode:`LOAD_METHOD`, and
:opcode:`STORE_ATTR`.

..

.. bpo: 46841
.. date: 2022-02-28-15-46-36
.. nonce: MDQoty
.. section: Core and Builtins

Use inline cache for :opcode:`BINARY_SUBSCR`.

..

.. bpo: 46841
.. date: 2022-02-28-12-01-04
.. nonce: r60AMJ
.. section: Core and Builtins

Use inline caching for :opcode:`COMPARE_OP`.

..

.. bpo: 46864
.. date: 2022-02-26-19-26-36
.. nonce: EmLgFp
.. section: Core and Builtins

Deprecate ``PyBytesObject.ob_shash``. It will be removed in Python 3.13.

..

.. bpo: 46841
.. date: 2022-02-25-15-18-40
.. nonce: tmLpgC
.. section: Core and Builtins

Use inline caching for :opcode:`UNPACK_SEQUENCE`.

..

.. bpo: 46845
.. date: 2022-02-25-14-57-21
.. nonce: TUvaMG
.. section: Core and Builtins

Reduces dict size by removing hash value from hash table when all inserted
keys are Unicode. For example, ``sys.getsizeof(dict.fromkeys("abcdefg"))``
becomes 272 bytes from 352 bytes on 64bit platform.

..

.. bpo: 46841
.. date: 2022-02-25-13-18-18
.. nonce: 86QiQu
.. section: Core and Builtins

Use inline cache for :opcode:`LOAD_GLOBAL`.

..

.. bpo: 46852
.. date: 2022-02-25-02-01-42
.. nonce: _3zg8D
.. section: Core and Builtins

Rename the private undocumented ``float.__set_format__()`` method to
``float.__setformat__()`` to fix a typo introduced in Python 3.7. The method
is only used by test_float. Patch by Victor Stinner.

..

.. bpo: 46852
.. date: 2022-02-25-01-42-45
.. nonce: nkRDvV
.. section: Core and Builtins

Remove the undocumented private ``float.__set_format__()`` method,
previously known as ``float.__setformat__()`` in Python 3.7. Its docstring
said: "You probably don't want to use this function. It exists mainly to be
used in Python's test suite." Patch by Victor Stinner.

..

.. bpo: 40116
.. date: 2022-02-24-16-34-17
.. nonce: AeVGG2
.. section: Core and Builtins

Fix regression that dict.update(other) may don't respect iterate order of
other when other is key sharing dict.

..

.. bpo: 46712
.. date: 2022-02-24-07-50-43
.. nonce: pw7vQV
.. section: Core and Builtins

Share global string identifiers in deep-frozen modules.

..

.. bpo: 46430
.. date: 2022-02-24-07-33-29
.. nonce: c91TAg
.. section: Core and Builtins

Fix memory leak in interned strings of deep-frozen modules.

..

.. bpo: 46841
.. date: 2022-02-23-18-17-30
.. nonce: fns8HB
.. section: Core and Builtins

Store :opcode:`BINARY_OP` caches inline using a new :opcode:`CACHE`
instruction.

..

.. bpo: 45107
.. date: 2022-02-23-15-26-02
.. nonce: axcgHn
.. section: Core and Builtins

Specialize ``LOAD_METHOD`` for instances with a dict.

..

.. bpo: 44337
.. date: 2022-02-22-17-19-45
.. nonce: XA-egu
.. section: Core and Builtins

Reduce the memory usage of specialized :opcode:`LOAD_ATTR` and
:opcode:`STORE_ATTR` instructions.

..

.. bpo: 46729
.. date: 2022-02-22-17-18-36
.. nonce: ZwGTFq
.. section: Core and Builtins

Add number of sub-exceptions to :meth:`BaseException.__str__`.

..

.. bpo: 45885
.. date: 2022-02-22-15-48-32
.. nonce: W2vkaI
.. section: Core and Builtins

Don't un-adapt :opcode:`COMPARE_OP` when collecting specialization stats.

..

.. bpo: 46329
.. date: 2022-02-22-14-03-56
.. nonce: RX_AzJ
.. section: Core and Builtins

Fix specialization stats gathering for :opcode:`!PRECALL` instructions.

..

.. bpo: 46794
.. date: 2022-02-22-12-07-53
.. nonce: 6WvJ9o
.. section: Core and Builtins

Bump up the libexpat version into 2.4.6

..

.. bpo: 46823
.. date: 2022-02-22-05-14-25
.. nonce: z9NZC9
.. section: Core and Builtins

Implement a specialized combined opcode
``LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE``.  Patch by Dennis Sweeney.

..

.. bpo: 46820
.. date: 2022-02-21-21-55-23
.. nonce: 4RfUZh
.. section: Core and Builtins

Fix parsing a numeric literal immediately (without spaces) followed by "not
in" keywords, like in ``1not in x``. Now the parser only emits a warning,
not a syntax error.

..

.. bpo: 46329
.. date: 2022-02-21-10-29-20
.. nonce: cbkt7u
.. section: Core and Builtins

Move ``KW_NAMES`` before ``PRECALL`` instruction in call sequence. Change
``operand`` of ``CALL`` to match ``PRECALL`` for easier specialization.

..

.. bpo: 46808
.. date: 2022-02-20-23-10-14
.. nonce: vouNSF
.. section: Core and Builtins

Remove the ``NEXT_BLOCK`` macro from compile.c, and make the compiler
automatically generate implicit blocks when they are needed.

..

.. bpo: 46329
.. date: 2022-02-16-13-15-16
.. nonce: 8aIuz9
.. section: Core and Builtins

Add ``PUSH_NULL`` instruction. This is used as a prefix when evaluating a
callable, so that the stack has the same shape for methods and other calls.
``PRECALL_FUNCTION`` and ``PRECALL_METHOD`` are merged into a single
``PRECALL`` instruction.

There is no change in semantics.

..

.. bpo: 46762
.. date: 2022-02-15-20-26-46
.. nonce: 1H7vab
.. section: Core and Builtins

Fix an assert failure in debug builds when a '<', '>', or '=' is the last
character in an f-string that's missing a closing right brace.

..

.. bpo: 46730
.. date: 2022-02-14-21-04-43
.. nonce: rYJ1w5
.. section: Core and Builtins

Message of AttributeError caused by getting, setting or deleting a property
without the corresponding function now mentions that the attribute is in
fact a property and also specifies type of the class that it belongs to.

..

.. bpo: 46724
.. date: 2022-02-14-14-44-06
.. nonce: jym_K6
.. section: Core and Builtins

Make sure that all backwards jumps use the ``JUMP_ABSOLUTE`` instruction,
rather than ``JUMP_FORWARD`` with an argument of ``(2**32)+offset``.

..

.. bpo: 46732
.. date: 2022-02-12-11-16-40
.. nonce: 3Z_qxd
.. section: Core and Builtins

Correct the docstring for the :meth:`~object.__bool__` method. Patch by Jelle
Zijlstra.

..

.. bpo: 46072
.. date: 2022-02-11-13-47-58
.. nonce: PDS6Ke
.. section: Core and Builtins

Add more detailed specialization failure statistics for :opcode:`BINARY_OP`.

..

.. bpo: 46707
.. date: 2022-02-10-03-13-18
.. nonce: xeSEh0
.. section: Core and Builtins

Avoid potential exponential backtracking when producing some syntax errors
involving lots of brackets. Patch by Pablo Galindo.

..

.. bpo: 46323
.. date: 2022-02-10-02-29-12
.. nonce: HK_cs0
.. section: Core and Builtins

:mod:`ctypes` now allocates memory on the stack instead of on the heap to
pass arguments while calling a Python callback function. Patch by Donghee
Na.

..

.. bpo: 45923
.. date: 2022-02-09-20-21-43
.. nonce: tJ4gDX
.. section: Core and Builtins

Add a quickened form of :opcode:`RESUME` that skips quickening checks.

..

.. bpo: 46702
.. date: 2022-02-09-16-36-11
.. nonce: LcaEuC
.. section: Core and Builtins

Specialize :opcode:`UNPACK_SEQUENCE` for :class:`tuple` and :class:`list`
unpackings.

..

.. bpo: 46072
.. date: 2022-02-07-14-38-54
.. nonce: 6ebLyN
.. section: Core and Builtins

Opcode pair stats are now gathered with ``--enable-pystats``. Defining
``DYNAMIC_EXECUTION_PROFILE`` or  ``DXPAIRS`` no longer has any effect.

..

.. bpo: 46675
.. date: 2022-02-07-14-33-45
.. nonce: ZPbdMp
.. section: Core and Builtins

Allow more than 16 items in a split dict before it is combined. The limit is
now 254.

..

.. bpo: 40479
.. date: 2022-02-06-23-08-30
.. nonce: zED3Zu
.. section: Core and Builtins

Add a missing call to ``va_end()`` in ``Modules/_hashopenssl.c``.

..

.. bpo: 46323
.. date: 2022-02-05-14-46-21
.. nonce: FC1OJg
.. section: Core and Builtins

Use :c:func:`PyObject_Vectorcall` while calling ctypes callback function.
Patch by Donghee Na.

..

.. bpo: 46615
.. date: 2022-02-04-04-33-18
.. nonce: puArY9
.. section: Core and Builtins

When iterating over sets internally in ``setobject.c``, acquire strong
references to the resulting items from the set.  This prevents crashes in
corner-cases of various set operations where the set gets mutated.

..

.. bpo: 45828
.. date: 2022-01-27-14-20-18
.. nonce: kzk4fl
.. section: Core and Builtins

The bytecode compiler now attempts to apply runtime stack manipulations at
compile-time (whenever it is feasible to do so).

..

.. bpo: 30496
.. date: 2022-01-09-11-59-04
.. nonce: KvuuGT
.. section: Core and Builtins

Fixed a minor portability issue in the implementation of
:c:func:`PyLong_FromLong`, and added a fast path for single-digit integers
to :c:func:`PyLong_FromLongLong`.

..

.. bpo: 25707
.. date: 2022-03-05-09-43-53
.. nonce: gTlclP
.. section: Library

Fixed a file leak in :func:`xml.etree.ElementTree.iterparse` when the
iterator is not exhausted. Patch by Jacob Walls.

..

.. bpo: 46877
.. date: 2022-03-03-06-58-52
.. nonce: BKgjpD
.. section: Library

Export :func:`unittest.doModuleCleanups` in :mod:`unittest`. Patch by Kumar
Aditya.

..

.. bpo: 46848
.. date: 2022-03-01-01-16-13
.. nonce: BB01Fr
.. section: Library

For performance, use the optimized string-searching implementations from
:meth:`~bytes.find` and :meth:`~bytes.rfind` for :meth:`~mmap.find` and
:meth:`~mmap.rfind`.

..

.. bpo: 46736
.. date: 2022-02-24-01-49-38
.. nonce: NJcoWO
.. section: Library

:class:`~http.server.SimpleHTTPRequestHandler` now uses HTML5 grammar. Patch
by Donghee Na.

..

.. bpo: 44886
.. date: 2022-02-23-00-55-59
.. nonce: I40Mbr
.. section: Library

Inherit asyncio proactor datagram transport from
:class:`asyncio.DatagramTransport`.

..

.. bpo: 46827
.. date: 2022-02-22-15-08-30
.. nonce: hvj38S
.. section: Library

Support UDP sockets in  :meth:`asyncio.loop.sock_connect` for selector-based
event loops.  Patch by Thomas Grainger.

..

.. bpo: 46811
.. date: 2022-02-20-21-03-31
.. nonce: 8BxgdQ
.. section: Library

Make test suite support Expat >=2.4.5

..

.. bpo: 46252
.. date: 2022-02-20-12-59-46
.. nonce: KG1SqA
.. section: Library

Raise :exc:`TypeError` if :class:`ssl.SSLSocket` is passed to
transport-based APIs.

..

.. bpo: 46784
.. date: 2022-02-18-22-10-30
.. nonce: SVOQJx
.. section: Library

Fix libexpat symbols collisions with user dynamically loaded or statically
linked libexpat in embedded Python.

..

.. bpo: 46786
.. date: 2022-02-18-12-10-26
.. nonce: P0xRvS
.. section: Library

The HTML serialisation in xml.etree.ElementTree now writes ``embed``,
``source``, ``track`` and ``wbr`` as empty tags, as defined in HTML 5.

..

.. bpo: 39327
.. date: 2022-02-17-13-10-50
.. nonce: ytIT7Z
.. section: Library

:func:`shutil.rmtree` can now work with VirtualBox shared  folders when
running from the guest operating-system.

..

.. bpo: 45390
.. date: 2022-02-17-11-00-16
.. nonce: sVhG6M
.. section: Library

Propagate :exc:`asyncio.CancelledError` message from inner task to outer
awaiter.

..

.. bpo: 46756
.. date: 2022-02-15-11-57-53
.. nonce: AigSPi
.. section: Library

Fix a bug in :meth:`urllib.request.HTTPPasswordMgr.find_user_password` and
:meth:`urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated` which
allowed to bypass authorization. For example, access to URI
``example.org/foobar`` was allowed if the user was authorized for URI
``example.org/foo``.

..

.. bpo: 46737
.. date: 2022-02-15-07-39-43
.. nonce: 6Pnblt
.. section: Library

:func:`random.gauss` and :func:`random.normalvariate` now have default
arguments.

..

.. bpo: 46752
.. date: 2022-02-14-21-21-49
.. nonce: m6ldTm
.. section: Library

Add task groups to asyncio (structured concurrency, inspired by Trio's
nurseries). This also introduces a change to task cancellation, where a
cancelled task can't be cancelled again until it calls .uncancel().

..

.. bpo: 46724
.. date: 2022-02-11-20-41-17
.. nonce: eU52_N
.. section: Library

Fix :mod:`dis` behavior on negative jump offsets.

..

.. bpo: 46333
.. date: 2022-02-11-20-01-49
.. nonce: PMTBY9
.. section: Library

The :meth:`__repr__` method of :class:`typing.ForwardRef` now includes the
``module`` parameter of :class:`typing.ForwardRef` when it is set.

..

.. bpo: 46643
.. date: 2022-02-09-22-40-11
.. nonce: aBlIx1
.. section: Library

In :func:`typing.get_type_hints`, support evaluating stringified
``ParamSpecArgs`` and ``ParamSpecKwargs`` annotations. Patch by Gregory
Beauregard.

..

.. bpo: 45863
.. date: 2022-02-09-00-53-23
.. nonce: zqQXVv
.. section: Library

When the :mod:`tarfile` module creates a pax format archive, it will put an
integer representation of timestamps in the ustar header (if possible) for
the benefit of older unarchivers, in addition to the existing full-precision
timestamps in the pax extended header.

..

.. bpo: 46066
.. date: 2022-02-08-16-42-20
.. nonce: m32Hl0
.. section: Library

Deprecate kwargs-based syntax for :class:`typing.TypedDict` definitions. It
had confusing semantics when specifying totality, and was largely unused.
Patch by Jingchen Ye.

..

.. bpo: 46676
.. date: 2022-02-07-19-20-42
.. nonce: 3Aws1o
.. section: Library

Make :data:`typing.ParamSpec` args and kwargs equal to themselves. Patch by
Gregory Beauregard.

..

.. bpo: 46323
.. date: 2022-02-07-13-27-59
.. nonce: 7UENAj
.. section: Library

``ctypes.CFUNCTYPE()`` and ``ctypes.WINFUNCTYPE()`` now fail to create the
type if its ``_argtypes_`` member contains too many arguments. Previously,
the error was only raised when calling a function. Patch by Victor Stinner.

..

.. bpo: 46672
.. date: 2022-02-07-13-15-16
.. nonce: 4swIjx
.. section: Library

Fix ``NameError`` in :func:`asyncio.gather` when initial type check fails.

..

.. bpo: 46659
.. date: 2022-02-06-19-13-02
.. nonce: q-vNL9
.. section: Library

The :class:`calendar.LocaleTextCalendar` and
:class:`calendar.LocaleHTMLCalendar` classes now use
:func:`locale.getlocale`, instead of using :func:`locale.getdefaultlocale`,
if no locale is specified. Patch by Victor Stinner.

..

.. bpo: 46659
.. date: 2022-02-06-17-57-45
.. nonce: zTmkoQ
.. section: Library

The :func:`locale.getdefaultlocale` function is deprecated and will be
removed in Python 3.13. Use :func:`locale.setlocale`,
:func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>` and
:func:`locale.getlocale` functions instead.  Patch by Victor Stinner.

..

.. bpo: 46655
.. date: 2022-02-06-08-54-03
.. nonce: DiLzYv
.. section: Library

In :func:`typing.get_type_hints`, support evaluating bare stringified
``TypeAlias`` annotations. Patch by Gregory Beauregard.

..

.. bpo: 45948
.. date: 2022-02-05-18-22-05
.. nonce: w4mCnE
.. section: Library

Fixed a discrepancy in the C implementation of the
:mod:`xml.etree.ElementTree` module. Now, instantiating an
:class:`xml.etree.ElementTree.XMLParser` with a ``target=None`` keyword
provides a default :class:`xml.etree.ElementTree.TreeBuilder` target as the
Python implementation does.

..

.. bpo: 46626
.. date: 2022-02-03-10-22-42
.. nonce: r2e-n_
.. section: Library

Expose Linux's ``IP_BIND_ADDRESS_NO_PORT`` option in :mod:`socket`.

..

.. bpo: 46521
.. date: 2022-02-01-19-34-28
.. nonce: IMUIrs
.. section: Library

Fix a bug in the :mod:`codeop` module that was incorrectly identifying
invalid code involving string quotes as valid code.

..

.. bpo: 46571
.. date: 2022-02-01-11-21-34
.. nonce: L40xUJ
.. section: Library

Improve :func:`typing.no_type_check`.

Now it does not modify external classes and functions. We also now correctly
mark classmethods as not to be type checked.

..

.. bpo: 46400
.. date: 2022-01-30-15-16-12
.. nonce: vweUiO
.. section: Library

expat: Update libexpat from 2.4.1 to 2.4.4

..

.. bpo: 46556
.. date: 2022-01-27-23-20-30
.. nonce: tlpAgS
.. section: Library

Deprecate undocumented support for using a :class:`pathlib.Path` object as a
context manager.

..

.. bpo: 46534
.. date: 2022-01-26-18-06-08
.. nonce: vhzUM4
.. section: Library

Implement :pep:`673` :class:`typing.Self`. Patch by James Hilton-Balfe.

..

.. bpo: 46522
.. date: 2022-01-25-15-31-04
.. nonce: tYAlX4
.. section: Library

Make various module ``__getattr__`` AttributeErrors more closely match a
typical AttributeError

..

.. bpo: 46475
.. date: 2022-01-23-15-35-07
.. nonce: UCe18S
.. section: Library

Add :data:`typing.Never` and :func:`typing.assert_never`. Patch by Jelle
Zijlstra.

..

.. bpo: 46333
.. date: 2022-01-11-15-54-15
.. nonce: B1faiF
.. section: Library

The :meth:`__eq__` and :meth:`__hash__` methods of
:class:`typing.ForwardRef` now honor the ``module`` parameter of
:class:`typing.ForwardRef`. Forward references from different modules are
now differentiated.

..

.. bpo: 46246
.. date: 2022-01-07-13-27-53
.. nonce: CTLx32
.. section: Library

Add missing ``__slots__`` to ``importlib.metadata.DeprecatedList``. Patch by
Arie Bovenberg.

..

.. bpo: 46232
.. date: 2022-01-03-09-46-44
.. nonce: s0KlyI
.. section: Library

The :mod:`ssl` module now handles certificates with bit strings in DN
correctly.

..

.. bpo: 46195
.. date: 2021-12-30-21-38-51
.. nonce: jFKGq_
.. section: Library

:func:`typing.get_type_hints` no longer adds ``Optional`` to parameters with
``None`` as a default. This aligns to changes to PEP 484 in
https://github.com/python/peps/pull/689

..

.. bpo: 31369
.. date: 2021-12-27-18-28-44
.. nonce: b9yM94
.. section: Library

Add :class:`~re.RegexFlag` to ``re.__all__`` and documented it. Add
:data:`~re.RegexFlag.NOFLAG` to indicate no flags being set.

..

.. bpo: 45898
.. date: 2021-11-26-10-46-09
.. nonce: UIfhsb
.. section: Library

:mod:`ctypes` no longer defines ``ffi_type_*`` symbols in ``cfield.c``. The
symbols have been provided by libffi for over a decade.

..

.. bpo: 44953
.. date: 2021-08-19-09-29-43
.. nonce: 27ZyUd
.. section: Library

Calling ``operator.itemgetter`` objects and ``operator.attrgetter`` objects
is now faster due to use of the vectorcall calling convention.

..

.. bpo: 44289
.. date: 2021-06-02-19-47-46
.. nonce: xC5kuV
.. section: Library

Fix an issue with :meth:`~tarfile.is_tarfile` method when using *fileobj*
argument: position in the *fileobj* was advanced forward which made it
unreadable with :meth:`tarfile.TarFile.open`.

..

.. bpo: 44011
.. date: 2021-05-02-23-44-21
.. nonce: hd8iUO
.. section: Library

Reimplement SSL/TLS support in asyncio, borrow the implementation from
uvloop library.

..

.. bpo: 41086
.. date: 2020-06-23-01-50-24
.. nonce: YnOvpS
.. section: Library

Make the :class:`configparser.ConfigParser` constructor raise
:exc:`TypeError` if the ``interpolation`` parameter is not of type
:class:`!configparser.Interpolation`

..

.. bpo: 29418
.. date: 2020-03-31-20-53-11
.. nonce: 8Qa9cQ
.. section: Library

Implement :func:`inspect.ismethodwrapper` and fix :func:`inspect.isroutine`
for cases where methodwrapper is given. Patch by Hakan Çelik.

..

.. bpo: 14156
.. date: 2019-05-07-14-25-45
.. nonce: 0FaHXE
.. section: Library

argparse.FileType now supports an argument of '-' in binary mode, returning
the .buffer attribute of sys.stdin/sys.stdout as appropriate. Modes
including 'x' and 'a' are treated equivalently to 'w' when argument is '-'.
Patch contributed by Josh Rosenberg

..

.. bpo: 42238
.. date: 2022-02-03-11-24-59
.. nonce: yJcMa8
.. section: Documentation

``Doc/tools/rstlint.py`` has moved to its own repository and is now packaged
on PyPI as ``sphinx-lint``.

..

.. bpo: 46913
.. date: 2022-03-03-17-36-24
.. nonce: vxETIE
.. section: Tests

Fix test_faulthandler.test_sigfpe() if Python is built with undefined
behavior sanitizer (UBSAN): disable UBSAN on the faulthandler_sigfpe()
function. Patch by Victor Stinner.

..

.. bpo: 46760
.. date: 2022-02-16-10-38-18
.. nonce: O3ovJo
.. section: Tests

Remove bytecode offsets from expected values in test.test_dis module.
Reduces the obstacles to modifying the VM or compiler.

..

.. bpo: 46708
.. date: 2022-02-10-14-33-47
.. nonce: avLfCb
.. section: Tests

Prevent default asyncio event loop policy modification warning after
``test_asyncio`` execution.

..

.. bpo: 46678
.. date: 2022-02-07-12-40-45
.. nonce: zfOrgL
.. section: Tests

The function ``make_legacy_pyc`` in ``Lib/test/support/import_helper.py`` no
longer fails when ``PYTHONPYCACHEPREFIX`` is set to a directory on a
different device from where tempfiles are stored.

..

.. bpo: 46623
.. date: 2022-02-03-09-45-26
.. nonce: vxzuhV
.. section: Tests

Skip test_pair() and test_speech128() of test_zlib on s390x since they fail
if zlib uses the s390x hardware accelerator. Patch by Victor Stinner.

..

.. bpo: 46860
.. date: 2022-02-25-16-19-40
.. nonce: jfciLG
.. section: Build

Respect ``--with-suffix`` when building on case-insensitive file systems.

..

.. bpo: 46656
.. date: 2022-02-25-00-51-16
.. nonce: MD783M
.. section: Build

Building Python now requires a C11 compiler. Optional C11 features are not
required.
Patch by Victor Stinner.

..

.. bpo: 46656
.. date: 2022-02-06-14-04-20
.. nonce: ajJjkh
.. section: Build

Building Python now requires support for floating point Not-a-Number (NaN):
remove the ``Py_NO_NAN`` macro. Patch by Victor Stinner.

..

.. bpo: 46640
.. date: 2022-02-04-21-26-50
.. nonce: HXUmQp
.. section: Build

Building Python now requires a C99 ``<math.h>`` header file providing a
``NAN`` constant, or the ``__builtin_nan()`` built-in function. Patch by
Victor Stinner.

..

.. bpo: 46608
.. date: 2022-02-02-11-26-46
.. nonce: cXH9po
.. section: Build

Exclude marshalled-frozen data if deep-freezing to save 300 KB disk space.
This includes adding a new ``is_package`` field to :c:struct:`_frozen`.
Patch by Kumar Aditya.

..

.. bpo: 40280
.. date: 2022-01-31-15-15-08
.. nonce: r1AYNW
.. section: Build

Fix wasm32-emscripten test failures and platform issues. - Disable syscalls
that are not supported or don't work, e.g.   wait, getrusage, prlimit,
mkfifo, mknod, setres[gu]id, setgroups. - Use fd_count to count open fds. -
Add more checks for subprocess and fork. - Add workarounds for missing
_multiprocessing and failing socket.accept(). - Enable bzip2. - Disable
large file support. - Disable signal.alarm.

..

.. bpo: 46430
.. date: 2022-01-19-11-08-32
.. nonce: k403m_
.. section: Build

Intern strings in deep-frozen modules. Patch by Kumar Aditya.

..

.. bpo: 46744
.. date: 2022-03-04-00-24-55
.. nonce: tneWFr
.. section: Windows

The default all users install directory for ARM64 is now under the native
``Program Files`` folder, rather than ``Program Files (Arm)`` which is
intended for ARM (32-bit) files.

..

.. bpo: 46567
.. date: 2022-02-25-01-22-31
.. nonce: 37WEue
.. section: Windows

Adds Tcl and Tk support for Windows ARM64. This also adds IDLE to the
installation.

..

.. bpo: 46638
.. date: 2022-02-04-18-02-33
.. nonce: mSJOSX
.. section: Windows

Ensures registry virtualization is consistently disabled. For 3.10 and
earlier, it remains enabled (some registry writes are protected), while for
3.11 and later it is disabled (registry modifications affect all
applications).

..

.. bpo: 46630
.. date: 2022-02-03-15-47-53
.. nonce: tREOjo
.. section: IDLE

Make query dialogs on Windows start with a cursor in the entry box.

..

.. bpo: 45447
.. date: 2021-10-14-16-55-03
.. nonce: FhiH5P
.. section: IDLE

Apply IDLE syntax highlighting to ``.pyi`` files. Patch by Alex Waygood and
Terry Jan Reedy.

..

.. bpo: 46748
.. date: 2022-02-24-13-13-16
.. nonce: aG1zb3
.. section: C API

Python's public headers no longer import ``<stdbool.h>``, leaving code that
embeds/extends Python free to define ``bool``, ``true`` and ``false``.

..

.. bpo: 46836
.. date: 2022-02-23-16-13-17
.. nonce: ZYyPF_
.. section: C API

Move the :c:type:`PyFrameObject` type definition (``struct _frame``) to the
internal C API ``pycore_frame.h`` header file. Patch by Victor Stinner.

..

.. bpo: 45459
.. date: 2022-02-07-18-47-00
.. nonce: 0FCWM8
.. section: C API

Rename ``Include/buffer.h`` header file to ``Include/pybuffer.h`` to avoid
conflicts with projects having an existing ``buffer.h`` header file. Patch by
Victor Stinner.

..

.. bpo: 45412
.. date: 2022-02-06-20-14-21
.. nonce: XJVaGW
.. section: C API

Remove the ``HAVE_PY_SET_53BIT_PRECISION`` macro (moved to the internal C
API). Patch by Victor Stinner.

..

.. bpo: 46613
.. date: 2022-02-02-17-58-49
.. nonce: __ZdpH
.. section: C API

Added function :c:func:`PyType_GetModuleByDef`, which allows access to
module state when a method's defining class is not available.