@@ -1218,16 +1218,6 @@ New features
1218
1218
which has an ambiguous return value.
1219
1219
(Contributed by Irit Katriel and Erlend Aasland in :gh: `105201 `.)
1220
1220
1221
- * :c:func: `Py_Finalize ` now deletes all interned strings. This
1222
- is backwards incompatible to any C-Extension that holds onto an interned
1223
- string after a call to :c:func: `Py_Finalize ` and is then reused after a
1224
- call to :c:func: `Py_Initialize `. Any issues arising from this behavior will
1225
- normally result in crashes during the execution of the subsequent call to
1226
- :c:func: `Py_Initialize ` from accessing uninitialized memory. To fix, use
1227
- an address sanitizer to identify any use-after-free coming from
1228
- an interned string and deallocate it during module shutdown.
1229
- (Contributed by Eddie Elizondo in :gh: `113601 `.)
1230
-
1231
1221
* Add :c:func: `PyLong_IsPositive `, :c:func: `PyLong_IsNegative `
1232
1222
and :c:func: `PyLong_IsZero ` for checking if :c:type: `PyLongObject `
1233
1223
is positive, negative, or zero, respectively.
@@ -1303,18 +1293,12 @@ New features
1303
1293
test if two strings are equal.
1304
1294
(Contributed by Victor Stinner in :gh: `124502 `.)
1305
1295
1306
-
1307
1296
* Add :c:func: `PyType_Freeze ` function to make a type immutable.
1308
1297
(Contributed by Victor Stinner in :gh: `121654 `.)
1309
1298
1310
1299
* Add :c:func: `PyUnstable_Object_EnableDeferredRefcount ` for enabling
1311
1300
deferred reference counting, as outlined in :pep: `703 `.
1312
1301
1313
- * The :ref: `Unicode Exception Objects <unicodeexceptions >` C API
1314
- now raises a :exc: `TypeError ` if its exception argument is not
1315
- a :exc: `UnicodeError ` object.
1316
- (Contributed by Bénédikt Tran in :gh: `127691 `.)
1317
-
1318
1302
* Add :c:func: `PyMonitoring_FireBranchLeftEvent ` and
1319
1303
:c:func: `PyMonitoring_FireBranchRightEvent ` for generating
1320
1304
:monitoring-event: `BRANCH_LEFT ` and :monitoring-event: `BRANCH_RIGHT `
@@ -1334,14 +1318,33 @@ New features
1334
1318
for debugging purposes.
1335
1319
1336
1320
1337
- Porting to Python 3.14
1338
- ----------------------
1321
+ Limited C API changes
1322
+ ---------------------
1339
1323
1340
1324
* In the limited C API 3.14 and newer, :c:func: `Py_TYPE ` and
1341
1325
:c:func: `Py_REFCNT ` are now implemented as an opaque function call to hide
1342
1326
implementation details.
1343
1327
(Contributed by Victor Stinner in :gh: `120600 ` and :gh: `124127 `.)
1344
1328
1329
+
1330
+ Porting to Python 3.14
1331
+ ----------------------
1332
+
1333
+ * :c:func: `Py_Finalize ` now deletes all interned strings. This
1334
+ is backwards incompatible to any C-Extension that holds onto an interned
1335
+ string after a call to :c:func: `Py_Finalize ` and is then reused after a
1336
+ call to :c:func: `Py_Initialize `. Any issues arising from this behavior will
1337
+ normally result in crashes during the execution of the subsequent call to
1338
+ :c:func: `Py_Initialize ` from accessing uninitialized memory. To fix, use
1339
+ an address sanitizer to identify any use-after-free coming from
1340
+ an interned string and deallocate it during module shutdown.
1341
+ (Contributed by Eddie Elizondo in :gh: `113601 `.)
1342
+
1343
+ * The :ref: `Unicode Exception Objects <unicodeexceptions >` C API
1344
+ now raises a :exc: `TypeError ` if its exception argument is not
1345
+ a :exc: `UnicodeError ` object.
1346
+ (Contributed by Bénédikt Tran in :gh: `127691 `.)
1347
+
1345
1348
* Private functions promoted to public C APIs:
1346
1349
1347
1350
* ``_PyBytes_Join() ``: :c:func: `PyBytes_Join `;
@@ -1386,12 +1389,6 @@ Deprecated
1386
1389
1387
1390
.. Add C API deprecations above alphabetically, not here at the end.
1388
1391
1389
- .. include :: ../deprecations/c-api-pending-removal-in-3.15.rst
1390
-
1391
- .. include :: ../deprecations/c-api-pending-removal-in-3.18.rst
1392
-
1393
- .. include :: ../deprecations/c-api-pending-removal-in-future.rst
1394
-
1395
1392
* The ``PyMonitoring_FireBranchEvent `` function is deprecated and should
1396
1393
be replaced with calls to :c:func: `PyMonitoring_FireBranchLeftEvent `
1397
1394
and :c:func: `PyMonitoring_FireBranchRightEvent `.
@@ -1416,12 +1413,23 @@ Deprecated
1416
1413
(Contributed by Victor Stinner in :gh: `128863 `.)
1417
1414
1418
1415
1416
+ .. include :: ../deprecations/c-api-pending-removal-in-3.15.rst
1417
+
1418
+ .. include :: ../deprecations/c-api-pending-removal-in-3.18.rst
1419
+
1420
+ .. include :: ../deprecations/c-api-pending-removal-in-future.rst
1421
+
1422
+
1419
1423
Removed
1420
1424
-------
1421
1425
1422
1426
* Creating :c:data: `immutable types <Py_TPFLAGS_IMMUTABLETYPE> ` with mutable
1423
1427
bases was deprecated since 3.12 and now raises a :exc: `TypeError `.
1424
1428
1429
+ * Remove ``PyDictObject.ma_version_tag `` member which was deprecated since
1430
+ Python 3.12. Use the :c:func: `PyDict_AddWatcher ` API instead.
1431
+ (Contributed by Sam Gross in :gh: `124296 `.)
1432
+
1425
1433
* Remove the private ``_Py_InitializeMain() `` function. It was a
1426
1434
:term: `provisional API ` added to Python 3.8 by :pep: `587 `.
1427
1435
(Contributed by Victor Stinner in :gh: `129033 `.)
0 commit comments