@@ -58,44 +58,49 @@ Summary -- Release highlights
58
58
.. This section singles out the most important changes in Python 3.11.
59
59
Brevity is key.
60
60
61
- - Python 3.11 is between 10-60% faster than Python 3.10. On average, we measured a
62
- 1.25x speedup on the standard benchmark suite. See `Faster CPython `_ for details.
61
+ * Python 3.11 is between 10-60% faster than Python 3.10.
62
+ On average, we measured a 1.25x speedup on the standard benchmark suite.
63
+ See :ref: `whatsnew311-faster-cpython ` for details.
63
64
64
65
.. PEP-sized items next.
65
66
66
67
New syntax features:
67
68
68
- * :pep: ` 654 `: Exception Groups and `` except* ``.
69
+ * :ref: ` whatsnew311-pep654 `
69
70
70
71
New built-in features:
71
72
72
- * :pep: ` 678 `: Enriching Exceptions with Notes.
73
+ * :ref: ` whatsnew311-pep678 `
73
74
74
75
New standard library modules:
75
76
76
- * :pep: `680 `: ``tomllib `` — Support for Parsing TOML in the Standard Library.
77
+ * :pep: `680 `: :mod: `tomllib ` —
78
+ Support for parsing `TOML <https://toml.io/ >`_ in the Standard Library
77
79
78
80
Interpreter improvements:
79
81
80
- * :pep: ` 657 `: Include Fine Grained Error Locations in Tracebacks.
82
+ * :ref: ` whatsnew311-pep657 `
81
83
* New :option: `-P ` command line option and :envvar: `PYTHONSAFEPATH ` environment
82
- variable to disable automatically prepending a potentially unsafe path
83
- (the working dir or script directory, depending on invocation)
84
- to :data: `sys.path `.
84
+ variable to :ref: `disable automatically prepending potentially unsafe paths
85
+ <whatsnew311-pythonsafepath>` to :data: `sys.path `
85
86
86
87
New typing features:
87
88
88
- * :pep: ` 646 `: Variadic generics.
89
- * :pep: ` 655 `: Marking individual TypedDict items as required or potentially missing.
90
- * :pep: ` 673 `: `` Self `` type.
91
- * :pep: ` 675 `: Arbitrary literal string type.
92
- * :pep: ` 681 `: Data Class Transforms.
89
+ * :ref: ` whatsnew311-pep646 `
90
+ * :ref: ` whatsnew311-pep655 `
91
+ * :ref: ` whatsnew311-pep673 `
92
+ * :ref: ` whatsnew311-pep675 `
93
+ * :ref: ` whatsnew311-pep681 `
93
94
94
- Important deprecations, removals or restrictions:
95
+ Important deprecations, removals and restrictions:
95
96
96
- * :pep: `594 `: Removing dead batteries from the standard library.
97
- * :pep: `624 `: Remove ``Py_UNICODE `` encoder APIs.
98
- * :pep: `670 `: Convert macros to functions in the Python C API.
97
+ * :pep: `594 `:
98
+ :ref: `Many legacy standard library modules have been deprecated
99
+ <whatsnew311-pep594>` and will be removed in Python 3.13
100
+ * :pep: `624 `:
101
+ :ref: `Py_UNICODE encoder APIs have been removed <whatsnew311-pep624 >`
102
+ * :pep: `670 `:
103
+ :ref: `Macros converted to static inline functions <whatsnew311-pep670 >`
99
104
100
105
101
106
.. _whatsnew311-features :
@@ -105,8 +110,8 @@ New Features
105
110
106
111
.. _whatsnew311-pep657 :
107
112
108
- PEP 657: Enhanced error locations in tracebacks
109
- -----------------------------------------------
113
+ PEP 657: Fine-grained error locations in tracebacks
114
+ ---------------------------------------------------
110
115
111
116
When printing tracebacks, the interpreter will now point to the exact expression
112
117
that caused the error, instead of just the line. For example:
@@ -381,7 +386,7 @@ Kumar Srinivasan and Graham Bleaney.)
381
386
382
387
.. _whatsnew311-pep681 :
383
388
384
- PEP 681: Data Class Transforms
389
+ PEP 681: Data class transforms
385
390
------------------------------
386
391
387
392
:data: `~typing.dataclass_transform ` may be used to
@@ -455,6 +460,8 @@ Other Language Changes
455
460
pickles instance attributes implemented as :term: `slots <__slots__> `.
456
461
(Contributed by Serhiy Storchaka in :issue: `26579 `.)
457
462
463
+ .. _whatsnew311-pythonsafepath :
464
+
458
465
* Added a :option: `-P ` command line option
459
466
and a :envvar: `PYTHONSAFEPATH ` environment variable,
460
467
which disable the automatic prepending to :data: `sys.path `
@@ -1497,11 +1504,7 @@ Deprecated
1497
1504
removed in Python 3.13. Use ``locale.setlocale(locale.LC_ALL, "") `` instead.
1498
1505
(Contributed by Victor Stinner in :gh: `90817 `.)
1499
1506
1500
- * The :mod: `asynchat `, :mod: `asyncore ` and :mod: `smtpd ` modules have been
1501
- deprecated since at least Python 3.6. Their documentation and deprecation
1502
- warnings have now been updated to note they will removed in Python 3.12
1503
- (:pep: `594 `).
1504
- (Contributed by Hugo van Kemenade in :issue: `47022 `.)
1507
+ .. _whatsnew311-pep594 :
1505
1508
1506
1509
* :pep: `594 ` led to the deprecations of the following modules which are
1507
1510
slated for removal in Python 3.13:
@@ -1529,6 +1532,11 @@ Deprecated
1529
1532
(Contributed by Brett Cannon in :issue: `47061 ` and Victor Stinner in
1530
1533
:gh: `68966 `.)
1531
1534
1535
+ * The :mod: `asynchat `, :mod: `asyncore ` and :mod: `smtpd ` modules have been
1536
+ deprecated since at least Python 3.6. Their documentation and deprecation
1537
+ warnings have now been updated to note they will removed in Python 3.12.
1538
+ (Contributed by Hugo van Kemenade in :issue: `47022 `.)
1539
+
1532
1540
* More strict rules will be applied now applied for numerical group references
1533
1541
and group names in regular expressions in future Python versions.
1534
1542
Only sequence of ASCII digits will be now accepted as a numerical reference.
@@ -1916,6 +1924,8 @@ New Features
1916
1924
Porting to Python 3.11
1917
1925
----------------------
1918
1926
1927
+ .. _whatsnew311-pep670 :
1928
+
1919
1929
* Some macros have been converted to static inline functions to avoid
1920
1930
`macro pitfalls <https://gcc.gnu.org/onlinedocs/cpp/Macro-Pitfalls.html >`_.
1921
1931
The change should be mostly transparent to users,
@@ -2292,6 +2302,8 @@ Removed
2292
2302
API).
2293
2303
(Contributed by Victor Stinner in :issue: `45412 `.)
2294
2304
2305
+ .. _whatsnew311-pep624 :
2306
+
2295
2307
* Remove the :c:type: `Py_UNICODE ` encoder APIs,
2296
2308
as they have been deprecated since Python 3.3,
2297
2309
are little used
0 commit comments