Skip to content

Commit e025178

Browse files
authored
bpo-39573: Remove What's new entry for Py_SIZE() (GH-23375)
A follow up for 0e2ac21
1 parent 7c9487d commit e025178

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

Doc/whatsnew/3.10.rst

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -500,17 +500,6 @@ Porting to Python 3.10
500500

501501
(Contributed by Victor Stinner in :issue:`39573`.)
502502

503-
* Since :c:func:`Py_SIZE()` is changed to the inline static function,
504-
``Py_SIZE(obj) = new_size`` must be replaced with ``Py_SET_SIZE(obj, new_size)``:
505-
see :c:func:`Py_SET_SIZE()` (available since Python 3.9). For backward
506-
compatibility, this macro can be used::
507-
508-
#if PY_VERSION_HEX < 0x030900A4
509-
# define Py_SET_SIZE(obj, size) ((Py_SIZE(obj) = (size)), (void)0)
510-
#endif
511-
512-
(Contributed by Victor Stinner in :issue:`39573`.)
513-
514503
* Calling :c:func:`PyDict_GetItem` without :term:`GIL` held had been allowed
515504
for historical reason. It is no longer allowed.
516505
(Contributed by Victor Stinner in :issue:`40839`.)

0 commit comments

Comments
 (0)