@@ -1113,6 +1113,10 @@ Modules (see :pep:`594`):
1113
1113
* :mod: `uu `
1114
1114
* :mod: `xdrlib `
1115
1115
1116
+ Other modules:
1117
+
1118
+ * :mod: `!lib2to3 `, and the :program: `2to3 ` program (:gh: `84540 `)
1119
+
1116
1120
APIs:
1117
1121
1118
1122
* :class: `!configparser.LegacyInterpolation ` (:gh: `90765 `)
@@ -1146,6 +1150,10 @@ Pending Removal in Python 3.14
1146
1150
Use :class: `ast.Constant ` instead.
1147
1151
(Contributed by Serhiy Storchaka in :gh: `90953 `.)
1148
1152
1153
+ * :mod: `asyncio `: the *msg * parameter of both
1154
+ :meth: `asyncio.Future.cancel ` and
1155
+ :meth: `asyncio.Task.cancel ` (:gh: `90985 `)
1156
+
1149
1157
* :mod: `collections.abc `: Deprecated :class: `collections.abc.ByteString `.
1150
1158
Prefer :class: `Sequence ` or :class: `collections.abc.Buffer `.
1151
1159
For use in typing, prefer a union, like ``bytes | bytearray ``, or :class: `collections.abc.Buffer `.
@@ -1212,12 +1220,17 @@ Pending Removal in Python 3.14
1212
1220
May be removed in 3.14.
1213
1221
(Contributed by Nikita Sobolev in :gh: `101866 `.)
1214
1222
1223
+ * Creating :c:data: `immutable types <Py_TPFLAGS_IMMUTABLETYPE> ` with mutable
1224
+ bases using the C API (:gh: `95388 `)
1225
+
1215
1226
Pending Removal in Future Versions
1216
1227
----------------------------------
1217
1228
1218
1229
The following APIs were deprecated in earlier Python versions and will be removed,
1219
1230
although there is currently no date scheduled for their removal.
1220
1231
1232
+ * :mod: `array `'s ``'u' `` format code (:gh: `57281 `)
1233
+
1221
1234
* :class: `typing.Text ` (:gh: `92332 `)
1222
1235
1223
1236
* Currently Python accepts numeric literals immediately followed by keywords,
0 commit comments