Skip to content

Commit e37970e

Browse files
committed
update news and whatsnew
1 parent efdc86f commit e37970e

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Doc/whatsnew/3.10.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,13 +1252,14 @@ Porting to Python 3.10
12521252
bugs like ``if (PyList_SET_ITEM (a, b, c) < 0) ...`` test.
12531253
(Contributed by Zackery Spytz and Victor Stinner in :issue:`30459`.)
12541254
1255-
* The non-limited API files ``odictobject.h``, ``parser_interface.h``,
1256-
``picklebufobject.h``, ``pyarena.h``, ``pyctype.h``, ``pydebug.h``,
1257-
``pyfpe.h``, and ``pytime.h`` have been moved to the ``Include/cpython``
1255+
* The non-limited API files ``asdl.h``, ``odictobject.h``,
1256+
``parser_interface.h``, ``picklebufobject.h``, ``pyarena.h``, ``pyctype.h``,
1257+
``pydebug.h``, ``pyfpe.h``, ``pystrhex.h``, ``pytime.h``, ``symtable.h``,
1258+
``token.h``, and ``tracemalloc.h`` have been moved to the ``Include/cpython``
12581259
directory. These files must not be included directly, as they are already
12591260
included in ``Python.h``: :ref:`Include Files <api-includes>`. If they have
1260-
been included directly, consider including ``Python.h`` instead.
1261-
(Contributed by Nicholas Sim in :issue:`35134`)
1261+
been included directly, consider including ``Python.h`` instead. (Contributed
1262+
by Nicholas Sim in :issue:`35134`)
12621263
12631264
Deprecated
12641265
----------
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Move asdl.h, pystrhex.h, symtable.h, token.h, and tracemalloc.h into the
2+
cpython/ directory. They must not be included directly, as they are already
3+
included by Python.h: :ref:`Include Files <api-includes>`.

0 commit comments

Comments
 (0)