blob: c4a79b6a1e98fadf7501bd1797fb66de3e834079 [file] [log] [blame]
Pablo Galindod4fe0982020-05-19 03:33:01 +01001****************************
2 What's New In Python 3.10
3****************************
4
5:Release: |release|
6:Date: |today|
7
8.. Rules for maintenance:
9
10 * Anyone can add text to this document. Do not spend very much time
11 on the wording of your changes, because your text will probably
12 get rewritten to some degree.
13
14 * The maintainer will go through Misc/NEWS periodically and add
15 changes; it's therefore more important to add your changes to
16 Misc/NEWS than to this file.
17
18 * This is not a complete list of every single change; completeness
19 is the purpose of Misc/NEWS. Some changes I consider too small
20 or esoteric to include. If such a change is added to the text,
21 I'll just remove it. (This is another reason you shouldn't spend
22 too much time on writing your addition.)
23
24 * If you want to draw your new text to the attention of the
25 maintainer, add 'XXX' to the beginning of the paragraph or
26 section.
27
28 * It's OK to just add a fragmentary note about a change. For
29 example: "XXX Describe the transmogrify() function added to the
30 socket module." The maintainer will research the change and
31 write the necessary text.
32
33 * You can comment out your additions if you like, but it's not
34 necessary (especially when a final release is some months away).
35
36 * Credit the author of a patch or bugfix. Just the name is
37 sufficient; the e-mail address isn't necessary.
38
39 * It's helpful to add the bug/patch number as a comment:
40
41 XXX Describe the transmogrify() function added to the socket
42 module.
43 (Contributed by P.Y. Developer in :issue:`12345`.)
44
45 This saves the maintainer the effort of going through the Mercurial log
46 when researching a change.
47
48This article explains the new features in Python 3.10, compared to 3.9.
49
Ned Deily29251b72020-05-19 07:39:29 -040050For full details, see the :ref:`changelog <changelog>`.
Pablo Galindod4fe0982020-05-19 03:33:01 +010051
52.. note::
53
54 Prerelease users should be aware that this document is currently in draft
55 form. It will be updated substantially as Python 3.10 moves towards release,
56 so it's worth checking back even after reading earlier versions.
57
58
59Summary -- Release highlights
60=============================
61
62.. This section singles out the most important changes in Python 3.10.
63 Brevity is key.
64
65
66.. PEP-sized items next.
67
68
69
70New Features
71============
72
Batuhan Taskaya044a1042020-10-06 23:03:02 +030073.. _whatsnew310-pep563:
74
Pablo Galindo7c8e0b02021-01-25 23:15:51 +000075Parenthesized context managers
76------------------------------
77
78Using enclosing parentheses for continuation across multiple lines
79in context managers is now supported. This allows formatting a long
80collection of context managers in multiple lines in a similar way
81as it was previously possible with import statements. For instance,
82all these examples are now valid:
83
84.. code-block:: python
85
86 with (CtxManager() as example):
87 ...
88
89 with (
90 CtxManager1(),
91 CtxManager2()
92 ):
93 ...
94
95 with (CtxManager1() as example,
96 CtxManager2()):
97 ...
98
99 with (CtxManager1(),
100 CtxManager2() as example):
101 ...
102
103 with (
104 CtxManager1() as example1,
105 CtxManager2() as example2
106 ):
107 ...
108
109it is also possible to use a trailing comma at the end of the
110enclosed group:
111
112.. code-block:: python
113
114 with (
115 CtxManager1() as example1,
116 CtxManager2() as example2,
117 CtxManager3() as example3,
118 ):
119 ...
120
121This new syntax uses the non LL(1) capacities of the new parser.
122Check :pep:`617` for more details.
123
124(Contributed by Guido van Rossum, Pablo Galindo and Lysandros Nikolaou
125in :issue:`12782` and :issue:`40334`.)
126
127
Batuhan Taskaya044a1042020-10-06 23:03:02 +0300128PEP 563: Postponed Evaluation of Annotations Becomes Default
129------------------------------------------------------------
130
131In Python 3.7, postponed evaluation of annotations was added,
132to be enabled with a ``from __future__ import annotations``
133directive. In 3.10 this became the default behavior, even
134without that future directive. With this being default, all
135annotations stored in :attr:`__annotations__` will be strings.
136If needed, annotations can be resolved at runtime using
137:func:`typing.get_type_hints`. See :pep:`563` for a full
138description. Also, the :func:`inspect.signature` will try to
139resolve types from now on, and when it fails it will fall back to
140showing the string annotations. (Contributed by Batuhan Taskaya
141in :issue:`38605`.)
142
Niklas Fiekas8bd216d2020-05-29 18:28:02 +0200143* The :class:`int` type has a new method :meth:`int.bit_count`, returning the
144 number of ones in the binary expansion of a given integer, also known
145 as the population count. (Contributed by Niklas Fiekas in :issue:`29882`.)
Pablo Galindod4fe0982020-05-19 03:33:01 +0100146
Dennis Sweeney3ee0e482020-06-12 13:19:25 -0400147* The views returned by :meth:`dict.keys`, :meth:`dict.values` and
148 :meth:`dict.items` now all have a ``mapping`` attribute that gives a
149 :class:`types.MappingProxyType` object wrapping the original
150 dictionary. (Contributed by Dennis Sweeney in :issue:`40890`.)
151
Ram Rachum59cf8532020-06-19 23:39:22 +0300152* :pep:`618`: The :func:`zip` function now has an optional ``strict`` flag, used
153 to require that all the iterables have an equal length.
154
Mikhail Golubev4f3c2502020-10-08 00:44:31 +0300155PEP 613: TypeAlias Annotation
156-----------------------------
157
158:pep:`484` introduced the concept of type aliases, only requiring them to be
159top-level unannotated assignments. This simplicity sometimes made it difficult
160for type checkers to distinguish between type aliases and ordinary assignments,
161especially when forward references or invalid types were involved. Compare::
162
163 StrCache = 'Cache[str]' # a type alias
164 LOG_PREFIX = 'LOG[DEBUG]' # a module constant
165
166Now the :mod:`typing` module has a special annotation :data:`TypeAlias` to
167declare type aliases more explicitly::
168
169 StrCache: TypeAlias = 'Cache[str]' # a type alias
170 LOG_PREFIX = 'LOG[DEBUG]' # a module constant
171
172See :pep:`613` for more details.
173
174(Contributed by Mikhail Golubev in :issue:`41923`.)
175
kj8d17d2b2020-11-25 11:59:59 +0700176PEP 604: New Type Union Operator
177--------------------------------
Fidget-Spinner8e1dd552020-10-05 12:40:52 +0800178
179A new type union operator was introduced which enables the syntax ``X | Y``.
180This provides a cleaner way of expressing 'either type X or type Y' instead of
181using :data:`typing.Union`, especially in type hints (annotations).
182
183In previous versions of Python, to apply a type hint for functions accepting
184arguments of multiple types, :data:`typing.Union` was used::
185
186 def square(number: Union[int, float]) -> Union[int, float]:
187 return number ** 2
188
189
kjd21cb2d2020-10-31 23:08:17 +0800190Type hints can now be written in a more succinct manner::
Fidget-Spinner8e1dd552020-10-05 12:40:52 +0800191
192 def square(number: int | float) -> int | float:
193 return number ** 2
194
195
Ken Jin5f77dee2021-02-09 09:57:11 +0800196This new syntax is also accepted as the second argument to :func:`isinstance`
197and :func:`issubclass`::
198
199 >>> isinstance(1, int | str)
200 True
201
202See :ref:`types-union` and :pep:`604` for more details.
Fidget-Spinner8e1dd552020-10-05 12:40:52 +0800203
204(Contributed by Maggie Moss and Philippe Prados in :issue:`41428`.)
Pablo Galindod4fe0982020-05-19 03:33:01 +0100205
Ken Jin11276cd2021-01-02 08:45:50 +0800206PEP 612: Parameter Specification Variables
207------------------------------------------
208
209Two new options to improve the information provided to static type checkers for
210:pep:`484`\ 's ``Callable`` have been added to the :mod:`typing` module.
211
212The first is the parameter specification variable. They are used to forward the
213parameter types of one callable to another callable -- a pattern commonly
214found in higher order functions and decorators. Examples of usage can be found
215in :class:`typing.ParamSpec`. Previously, there was no easy way to type annotate
216dependency of parameter types in such a precise manner.
217
218The second option is the new ``Concatenate`` operator. It's used in conjunction
219with parameter specification variables to type annotate a higher order callable
220which adds or removes parameters of another callable. Examples of usage can
221be found in :class:`typing.Concatenate`.
222
223See :class:`typing.Callable`, :class:`typing.ParamSpec`,
224:class:`typing.Concatenate` and :pep:`612` for more details.
225
226(Contributed by Ken Jin in :issue:`41559`.)
227
Pablo Galindo805ede82021-01-21 17:36:35 +0000228Better error messages in the parser
229-----------------------------------
230
231When parsing code that contains unclosed parentheses or brackets the interpreter
232now includes the location of the unclosed bracket of parentheses instead of displaying
233*SyntaxError: unexpected EOF while parsing* or pointing to some incorrect location.
234For instance, consider the following code (notice the unclosed '{'):
235
236.. code-block:: python
237
238 expected = {9: 1, 18: 2, 19: 2, 27: 3, 28: 3, 29: 3, 36: 4, 37: 4,
239 38: 4, 39: 4, 45: 5, 46: 5, 47: 5, 48: 5, 49: 5, 54: 6,
240 some_other_code = foo()
241
242previous versions of the interpreter reported confusing places as the location of
243the syntax error:
244
245.. code-block:: text
246
247 File "example.py", line 3
248 some_other_code = foo()
249 ^
250 SyntaxError: invalid syntax
251
252but in Python3.10 a more informative error is emitted:
253
254.. code-block:: text
255
256 File "example.py", line 1
257 expected = {9: 1, 18: 2, 19: 2, 27: 3, 28: 3, 29: 3, 36: 4, 37: 4,
258 ^
259 SyntaxError: '{' was never closed
260
261
262In a similar way, errors involving unclosed string literals (single and triple
263quoted) now point to the start of the string instead of reporting EOF/EOL.
264
265These improvements are inspired by previous work in the PyPy interpreter.
266
267(Contributed by Pablo Galindo in :issue:`42864` and Batuhan Taskaya in
268:issue:`40176`.)
269
Pablo Galindod4fe0982020-05-19 03:33:01 +0100270Other Language Changes
271======================
272
Serhiy Storchaka578c3952020-05-26 18:43:38 +0300273* Builtin and extension functions that take integer arguments no longer accept
274 :class:`~decimal.Decimal`\ s, :class:`~fractions.Fraction`\ s and other
275 objects that can be converted to integers only with a loss (e.g. that have
276 the :meth:`~object.__int__` method but do not have the
277 :meth:`~object.__index__` method).
278 (Contributed by Serhiy Storchaka in :issue:`37999`.)
Pablo Galindod4fe0982020-05-19 03:33:01 +0100279
Lysandros Nikolaoua85fefe2020-11-19 01:49:28 +0200280* Assignment expressions can now be used unparenthesized within set literals
281 and set comprehensions, as well as in sequence indexes (but not slices).
282
Victor Stinnera3c3ffa2021-02-18 12:35:37 +0100283* Functions have a new ``__builtins__`` attribute which is used to look for
284 builtin symbols when a function is executed, instead of looking into
285 ``__globals__['__builtins__']``.
286 (Contributed by Mark Shannon in :issue:`42990`.)
287
Pablo Galindod4fe0982020-05-19 03:33:01 +0100288
289New Modules
290===========
291
292* None yet.
293
294
295Improved Modules
296================
297
Tomáš Hrnčiarfb35fa42021-01-12 01:41:35 +0100298argparse
299--------
300
301Misleading phrase "optional arguments" was replaced with "options" in argparse help. Some tests might require adaptation if they rely on exact output match.
302(Contributed by Raymond Hettinger in :issue:`9694`.)
303
Filipe Laíns4ce6faa2020-08-10 15:48:20 +0100304base64
305------
306
307Add :func:`base64.b32hexencode` and :func:`base64.b32hexdecode` to support the
308Base32 Encoding with Extended Hex Alphabet.
309
Hai Shid332e7b2020-09-29 05:41:11 +0800310codecs
311------
312
313Add a :func:`codecs.unregister` function to unregister a codec search function.
314(Contributed by Hai Shi in :issue:`41842`.)
315
kjd75f6f72020-12-19 01:39:26 +0800316collections.abc
317---------------
318
319The ``__args__`` of the :ref:`parameterized generic <types-genericalias>` for
320:class:`collections.abc.Callable` are now consistent with :data:`typing.Callable`.
321:class:`collections.abc.Callable` generic now flattens type parameters, similar
322to what :data:`typing.Callable` currently does. This means that
323``collections.abc.Callable[[int, str], str]`` will have ``__args__`` of
324``(int, str, str)``; previously this was ``([int, str], str)``. To allow this
325change, :class:`types.GenericAlias` can now be subclassed, and a subclass will
326be returned when subscripting the :class:`collections.abc.Callable` type. Note
327that a :exc:`TypeError` may be raised for invalid forms of parameterizing
328:class:`collections.abc.Callable` which may have passed silently in Python 3.9.
329(Contributed by Ken Jin in :issue:`42195`.)
330
Joongi Kim3eb28462020-11-11 00:19:11 +0900331contextlib
332----------
333
334Add a :func:`contextlib.aclosing` context manager to safely close async generators
335and objects representing asynchronously released resources.
336(Contributed by Joongi Kim and John Belmonte in :issue:`41229`.)
337
Tom Gringauz9c98e8c2020-11-18 00:58:35 +0200338Add asynchronous context manager support to :func:`contextlib.nullcontext`.
339(Contributed by Tom Gringauz in :issue:`41543`.)
340
Hans Petter Janssonda4e09f2020-08-03 22:51:33 -0500341curses
342------
343
344The extended color functions added in ncurses 6.1 will be used transparently
345by :func:`curses.color_content`, :func:`curses.init_color`,
346:func:`curses.init_pair`, and :func:`curses.pair_content`. A new function,
347:func:`curses.has_extended_color_support`, indicates whether extended color
348support is provided by the underlying ncurses library.
349(Contributed by Jeffrey Kintscher and Hans Petter Jansson in :issue:`36982`.)
350
Zackery Spytz14cfa322021-01-14 02:40:09 -0700351The ``BUTTON5_*`` constants are now exposed in the :mod:`curses` module if
352they are provided by the underlying curses library.
353(Contributed by Zackery Spytz in :issue:`39273`.)
354
Steve Dower62949f62021-01-29 21:48:55 +0000355.. _distutils-deprecated:
356
Victor Stinner0e2a0f72021-01-09 00:35:01 +0100357distutils
358---------
359
Steve Dower62949f62021-01-29 21:48:55 +0000360The entire ``distutils`` package is deprecated, to be removed in Python
3613.12. Its functionality for specifying package builds has already been
362completely replaced by third-party packages ``setuptools`` and
363``packaging``, and most other commonly used APIs are available elsewhere
364in the standard library (such as :mod:`platform`, :mod:`shutil`,
365:mod:`subprocess` or :mod:`sysconfig`). There are no plans to migrate
366any other functionality from ``distutils``, and applications that are
367using other functions should plan to make private copies of the code.
368Refer to :pep:`632` for discussion.
369
Victor Stinner0e2a0f72021-01-09 00:35:01 +0100370The ``bdist_wininst`` command deprecated in Python 3.8 has been removed.
ravcio6cd5b012021-01-21 11:23:46 +0100371The ``bdist_wheel`` command is now recommended to distribute binary packages
Victor Stinner0e2a0f72021-01-09 00:35:01 +0100372on Windows.
373(Contributed by Victor Stinner in :issue:`42802`.)
374
Brett Cannon825ac382020-11-06 18:45:56 -0800375doctest
376-------
377
378When a module does not define ``__loader__``, fall back to ``__spec__.loader``.
379(Contributed by Brett Cannon in :issue:`42133`.)
380
Hai Shic5b049b2020-10-14 23:43:31 +0800381encodings
382---------
383:func:`encodings.normalize_encoding` now ignores non-ASCII characters.
384(Contributed by Hai Shi in :issue:`39337`.)
385
Serhiy Storchaka8a64cea2020-06-18 22:08:27 +0300386glob
387----
388
389Added the *root_dir* and *dir_fd* parameters in :func:`~glob.glob` and
390:func:`~glob.iglob` which allow to specify the root directory for searching.
391(Contributed by Serhiy Storchaka in :issue:`38144`.)
392
Brett Cannon825ac382020-11-06 18:45:56 -0800393inspect
394-------
395
396When a module does not define ``__loader__``, fall back to ``__spec__.loader``.
397(Contributed by Brett Cannon in :issue:`42133`.)
398
Batuhan Taskayaeee1c772020-12-24 01:45:13 +0300399Added *globalns* and *localns* parameters in :func:`~inspect.signature` and
400:meth:`inspect.Signature.from_callable` to retrieve the annotations in given
401local and global namespaces.
402(Contributed by Batuhan Taskaya in :issue:`41960`.)
403
Brett Cannon825ac382020-11-06 18:45:56 -0800404linecache
405---------
406
407When a module does not define ``__loader__``, fall back to ``__spec__.loader``.
408(Contributed by Brett Cannon in :issue:`42133`.)
409
pxinwr3405e052020-08-07 13:21:52 +0800410os
411--
412
413Added :func:`os.cpu_count()` support for VxWorks RTOS.
414(Contributed by Peixing Xin in :issue:`41440`.)
415
Christian Heimescd9fed62020-11-13 19:48:52 +0100416Added a new function :func:`os.eventfd` and related helpers to wrap the
417``eventfd2`` syscall on Linux.
418(Contributed by Christian Heimes in :issue:`41001`.)
419
Pablo Galindoa57b3d32020-11-17 00:00:38 +0000420Added :func:`os.splice()` that allows to move data between two file
421descriptors without copying between kernel address space and user
422address space, where one of the file descriptors must refer to a
423pipe. (Contributed by Pablo Galindo in :issue:`41625`.)
424
Dong-hee Naf917c242021-02-04 08:32:55 +0900425Added :data:`~os.O_EVTONLY`, :data:`~os.O_FSYNC`, :data:`~os.O_SYMLINK`
426and :data:`~os.O_NOFOLLOW_ANY` for macOS.
427(Contributed by Dong-hee Na in :issue:`43106`.)
428
Joshua Cannon45205842020-11-20 09:40:39 -0600429pathlib
430-------
431
Yaroslav Pankovych79d2e622020-11-23 22:06:22 +0200432Added slice support to :attr:`PurePath.parents <pathlib.PurePath.parents>`.
Joshua Cannon45205842020-11-20 09:40:39 -0600433(Contributed by Joshua Cannon in :issue:`35498`)
434
Yaroslav Pankovych79d2e622020-11-23 22:06:22 +0200435Added negative indexing support to :attr:`PurePath.parents
436<pathlib.PurePath.parents>`.
437(Contributed by Yaroslav Pankovych in :issue:`21041`)
438
Christian Heimes5c73afc2020-11-30 22:34:45 +0100439platform
440--------
441
442Added :func:`platform.freedesktop_os_release()` to retrieve operation system
443identification from `freedesktop.org os-release
444<https://www.freedesktop.org/software/systemd/man/os-release.html>`_ standard file.
445(Contributed by Christian Heimes in :issue:`28468`)
446
Gregory Schevchenkodaff3902020-07-25 22:58:45 +0300447py_compile
448----------
449
450Added ``--quiet`` option to command-line interface of :mod:`py_compile`.
451(Contributed by Gregory Schevchenko in :issue:`38731`.)
452
Aviral Srivastava000cde52021-02-01 09:38:44 -0800453pyclbr
454------
455
456Added an ``end_lineno`` attribute to the ``Function`` and ``Class``
457objects in the tree returned by :func:`pyclbr.readline` and
458:func:`pyclbr.readline_ex`. It matches the existing (start) ``lineno``.
459(Contributed by Aviral Srivastava in :issue:`38307`.)
460
Zackery Spytzdf592732020-10-29 03:44:35 -0600461shelve
462------
463
464The :mod:`shelve` module now uses :data:`pickle.DEFAULT_PROTOCOL` by default
465instead of :mod:`pickle` protocol ``3`` when creating shelves.
466(Contributed by Zackery Spytz in :issue:`34204`.)
467
Brett Cannon825ac382020-11-06 18:45:56 -0800468site
469----
470
471When a module does not define ``__loader__``, fall back to ``__spec__.loader``.
472(Contributed by Brett Cannon in :issue:`42133`.)
473
Christian Heimes03c8ddd2020-11-20 09:26:07 +0100474socket
475------
476
477The exception :exc:`socket.timeout` is now an alias of :exc:`TimeoutError`.
478(Contributed by Christian Heimes in :issue:`42413`.)
479
Victor Stinnerdd8a93e2020-06-30 00:49:03 +0200480sys
481---
482
483Add :data:`sys.orig_argv` attribute: the list of the original command line
484arguments passed to the Python executable.
485(Contributed by Victor Stinner in :issue:`23427`.)
486
Victor Stinner9852cb32021-01-25 23:12:50 +0100487Add :data:`sys.stdlib_module_names`, containing the list of the standard library
Victor Stinnerdb584bd2021-01-25 13:24:42 +0100488module names.
489(Contributed by Victor Stinner in :issue:`42955`.)
490
Mario Corchero0001a1b2020-11-04 10:27:43 +0100491threading
492---------
493
494Added :func:`threading.gettrace` and :func:`threading.getprofile` to
495retrieve the functions set by :func:`threading.settrace` and
496:func:`threading.setprofile` respectively.
497(Contributed by Mario Corchero in :issue:`42251`.)
498
Mario Corchero750c5ab2020-11-12 18:27:44 +0100499Add :data:`threading.__excepthook__` to allow retrieving the original value
500of :func:`threading.excepthook` in case it is set to a broken or a different
501value.
502(Contributed by Mario Corchero in :issue:`42308`.)
503
Zackery Spytz91e93792020-11-05 15:18:44 -0700504traceback
505---------
506
507The :func:`~traceback.format_exception`,
508:func:`~traceback.format_exception_only`, and
509:func:`~traceback.print_exception` functions can now take an exception object
510as a positional-only argument.
511(Contributed by Zackery Spytz and Matthias Bussonnier in :issue:`26389`.)
512
Bas van Beek0d0e9fe2020-09-22 17:55:34 +0200513types
514-----
515
516Reintroduced the :data:`types.EllipsisType`, :data:`types.NoneType`
517and :data:`types.NotImplementedType` classes, providing a new set
518of types readily interpretable by type checkers.
519(Contributed by Bas van Beek in :issue:`41810`.)
520
kj46873382020-11-19 11:44:24 +0700521typing
522------
523
524The behavior of :class:`typing.Literal` was changed to conform with :pep:`586`
525and to match the behavior of static type checkers specified in the PEP.
526
5271. ``Literal`` now de-duplicates parameters.
5282. Equality comparisons between ``Literal`` objects are now order independent.
5293. ``Literal`` comparisons now respects types. For example,
530 ``Literal[0] == Literal[False]`` previously evaluated to ``True``. It is
531 now ``False``. To support this change, the internally used type cache now
532 supports differentiating types.
5334. ``Literal`` objects will now raise a :exc:`TypeError` exception during
534 equality comparisons if one of their parameters are not :term:`immutable`.
535 Note that declaring ``Literal`` with mutable parameters will not throw
536 an error::
537
538 >>> from typing import Literal
539 >>> Literal[{0}]
540 >>> Literal[{0}] == Literal[{False}]
541 Traceback (most recent call last):
542 File "<stdin>", line 1, in <module>
543 TypeError: unhashable type: 'set'
544
545(Contributed by Yurii Karabas in :issue:`42345`.)
546
Mark Dickinsonc8c70e72020-09-19 21:38:11 +0100547unittest
548--------
549
550Add new method :meth:`~unittest.TestCase.assertNoLogs` to complement the
551existing :meth:`~unittest.TestCase.assertLogs`. (Contributed by Kit Yan Choi
552in :issue:`39385`.)
553
Adam Goldschmidtfcbe0cb2021-02-15 00:41:57 +0200554urllib.parse
555------------
556
557Python versions earlier than Python 3.10 allowed using both ``;`` and ``&`` as
558query parameter separators in :func:`urllib.parse.parse_qs` and
559:func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
560newer W3C recommendations, this has been changed to allow only a single
561separator key, with ``&`` as the default. This change also affects
562:func:`cgi.parse` and :func:`cgi.parse_multipart` as they use the affected
563functions internally. For more details, please see their respective
564documentation.
565(Contributed by Adam Goldschmidt, Senthil Kumaran and Ken Jin in :issue:`42967`.)
566
Zackery Spytze28b8c92020-08-09 04:50:53 -0600567xml
568---
569
570Add a :class:`~xml.sax.handler.LexicalHandler` class to the
571:mod:`xml.sax.handler` module.
572(Contributed by Jonathan Gossage and Zackery Spytz in :issue:`35018`.)
573
Brett Cannond2e94bb2020-11-13 15:14:58 -0800574zipimport
575---------
576Add methods related to :pep:`451`: :meth:`~zipimport.zipimporter.find_spec`,
577:meth:`zipimport.zipimporter.create_module`, and
578:meth:`zipimport.zipimporter.exec_module`.
579(Contributed by Brett Cannon in :issue:`42131`.
580
Serhiy Storchaka8a64cea2020-06-18 22:08:27 +0300581
Pablo Galindod4fe0982020-05-19 03:33:01 +0100582Optimizations
583=============
584
Serhiy Storchaka12f43342020-07-20 15:53:55 +0300585* Constructors :func:`str`, :func:`bytes` and :func:`bytearray` are now faster
586 (around 30--40% for small objects).
587 (Contributed by Serhiy Storchaka in :issue:`41334`.)
588
Victor Stinner2c2a4f32020-06-18 01:20:51 +0200589* The :mod:`runpy` module now imports fewer modules.
Victor Stinner4c18fc82020-06-17 23:58:58 +0200590 The ``python3 -m module-name`` command startup time is 1.3x faster in
591 average.
592 (Contributed by Victor Stinner in :issue:`41006`.)
593
Pablo Galindo9e8fe192021-01-03 04:37:46 +0000594* The ``LOAD_ATTR`` instruction now uses new "per opcode cache" mechanism. It
Pablo Galindoa776da92021-01-31 22:55:48 +0000595 is about 36% faster now for regular attributes and 44% faster for slots.
596 (Contributed by Pablo Galindo and Yury Selivanov in :issue:`42093` and Guido
597 van Rossum in :issue:`42927`, based on ideas implemented originally in PyPy
598 and MicroPython.)
Pablo Galindod4fe0982020-05-19 03:33:01 +0100599
Pablo Galindob451b0e2020-10-21 22:46:52 +0100600* When building Python with ``--enable-optimizations`` now
601 ``-fno-semantic-interposition`` is added to both the compile and link line.
602 This speeds builds of the Python interpreter created with ``--enable-shared``
603 with ``gcc`` by up to 30%. See `this article
604 <https://developers.redhat.com/blog/2020/06/25/red-hat-enterprise-linux-8-2-brings-faster-python-3-8-run-speeds/>`_
605 for more details. (Contributed by Victor Stinner and Pablo Galindo in
Brett Cannon2de50972020-12-04 15:39:21 -0800606 :issue:`38980`.)
607
Pablo Galindob451b0e2020-10-21 22:46:52 +0100608
Yurii Karabas73019792020-11-25 12:43:18 +0200609* Function parameters and their annotations are no longer computed at runtime,
610 but rather at compilation time. They are stored as a tuple of strings at the
611 bytecode level. It is now around 100% faster to create a function with parameter
612 annotations. (Contributed by Yurii Karabas and Inada Naoki in :issue:`42202`)
613
Pablo Galindod4fe0982020-05-19 03:33:01 +0100614Deprecated
615==========
616
Brett Cannon04523c52020-10-23 18:10:54 -0700617* Starting in this release, there will be a concerted effort to begin
618 cleaning up old import semantics that were kept for Python 2.7
619 compatibility. Specifically,
620 :meth:`~importlib.abc.PathEntryFinder.find_loader`/:meth:`~importlib.abc.Finder.find_module`
621 (superseded by :meth:`~importlib.abc.Finder.find_spec`),
622 :meth:`~importlib.abc.Loader.load_module`
623 (superseded by :meth:`~importlib.abc.Loader.exec_module`),
624 :meth:`~importlib.abc.Loader.module_repr` (which the import system
625 takes care of for you), the ``__package__`` attribute
626 (superseded by ``__spec__.parent``), the ``__loader__`` attribute
627 (superseded by ``__spec__.loader``), and the ``__cached__`` attribute
628 (superseded by ``__spec__.cached``) will slowly be removed (as well
629 as other classes and methods in :mod:`importlib`).
630 :exc:`ImportWarning` and/or :exc:`DeprecationWarning` will be raised
631 as appropriate to help identify code which needs updating during
632 this transition.
633
Steve Dower62949f62021-01-29 21:48:55 +0000634* The entire ``distutils`` namespace is deprecated, to be removed in
635 Python 3.12. Refer to the :ref:`module changes <distutils-deprecated>`
636 section for more information.
637
Serhiy Storchakaf066bd92021-01-25 23:02:04 +0200638* Non-integer arguments to :func:`random.randrange` are deprecated.
639 The :exc:`ValueError` is deprecated in favor of a :exc:`TypeError`.
640 (Contributed by Serhiy Storchaka and Raymond Hettinger in :issue:`37319`.)
641
Brett Cannon2de50972020-12-04 15:39:21 -0800642* The various ``load_module()`` methods of :mod:`importlib` have been
643 documented as deprecated since Python 3.6, but will now also trigger
644 a :exc:`DeprecationWarning`. Use
645 :meth:`~importlib.abc.Loader.exec_module` instead.
646 (Contributed by Brett Cannon in :issue:`26131`.)
647
648* :meth:`zimport.zipimporter.load_module` has been deprecated in
649 preference for :meth:`~zipimport.zipimporter.exec_module`.
650 (Contributed by Brett Cannon in :issue:`26131`.)
651
652* The use of :meth:`~importlib.abc.Loader.load_module` by the import
653 system now triggers an :exc:`ImportWarning` as
654 :meth:`~importlib.abc.Loader.exec_module` is preferred.
655 (Contributed by Brett Cannon in :issue:`26131`.)
656
Erlend Egeberg Aaslanda1f401a2020-11-17 16:55:12 +0100657* ``sqlite3.OptimizedUnicode`` has been undocumented and obsolete since Python
658 3.3, when it was made an alias to :class:`str`. It is now deprecated,
659 scheduled for removal in Python 3.12.
660 (Contributed by Erlend E. Aasland in :issue:`42264`.)
661
Erlend Egeberg Aaslandddb5e112021-01-06 01:36:04 +0100662* The undocumented built-in function ``sqlite3.enable_shared_cache`` is now
663 deprecated, scheduled for removal in Python 3.12. Its use is strongly
664 discouraged by the SQLite3 documentation. See `the SQLite3 docs
Tom Forbes749d40a2021-02-10 17:56:16 +0000665 <https://sqlite.org/c3ref/enable_shared_cache.html>`_ for more details.
Erlend Egeberg Aaslandddb5e112021-01-06 01:36:04 +0100666 If shared cache must be used, open the database in URI mode using the
667 ``cache=shared`` query parameter.
668 (Contributed by Erlend E. Aasland in :issue:`24464`.)
669
Pablo Galindod4fe0982020-05-19 03:33:01 +0100670
Pablo Galindod4fe0982020-05-19 03:33:01 +0100671Removed
672=======
673
Serhiy Storchakae2ec0b22020-10-09 14:14:37 +0300674* Removed special methods ``__int__``, ``__float__``, ``__floordiv__``,
675 ``__mod__``, ``__divmod__``, ``__rfloordiv__``, ``__rmod__`` and
676 ``__rdivmod__`` of the :class:`complex` class. They always raised
677 a :exc:`TypeError`.
678 (Contributed by Serhiy Storchaka in :issue:`41974`.)
679
Berker Peksagd4d127f2020-07-16 09:38:58 +0300680* The ``ParserBase.error()`` method from the private and undocumented ``_markupbase``
681 module has been removed. :class:`html.parser.HTMLParser` is the only subclass of
682 ``ParserBase`` and its ``error()`` implementation has already been removed in
683 Python 3.5.
684 (Contributed by Berker Peksag in :issue:`31844`.)
685
Victor Stinner84f73822020-10-27 04:36:22 +0100686* Removed the ``unicodedata.ucnhash_CAPI`` attribute which was an internal
687 PyCapsule object. The related private ``_PyUnicode_Name_CAPI`` structure was
688 moved to the internal C API.
689 (Contributed by Victor Stinner in :issue:`42157`.)
690
Lysandros Nikolaouc26d5912020-11-16 20:46:37 +0200691* Removed the ``parser`` module, which was deprecated in 3.9 due to the
692 switch to the new PEG parser, as well as all the C source and header files
693 that were only being used by the old parser, including ``node.h``, ``parser.h``,
694 ``graminit.h`` and ``grammar.h``.
695
696* Removed the Public C API functions :c:func:`PyParser_SimpleParseStringFlags`,
697 :c:func:`PyParser_SimpleParseStringFlagsFilename`,
698 :c:func:`PyParser_SimpleParseFileFlags` and :c:func:`PyNode_Compile`
699 that were deprecated in 3.9 due to the switch to the new PEG parser.
700
Dong-hee Nabe319c02020-11-25 22:17:30 +0900701* Removed the ``formatter`` module, which was deprecated in Python 3.4.
702 It is somewhat obsolete, little used, and not tested. It was originally
703 scheduled to be removed in Python 3.6, but such removals were delayed until
704 after Python 2.7 EOL. Existing users should copy whatever classes they use
705 into their code.
706 (Contributed by Dong-hee Na and Terry J. Reedy in :issue:`42299`.)
Pablo Galindod4fe0982020-05-19 03:33:01 +0100707
Hai Shi0f91f582020-12-08 22:42:42 +0800708* Removed the :c:func:`PyModule_GetWarningsModule` function that was useless
709 now due to the _warnings module was converted to a builtin module in 2.6.
710 (Contributed by Hai Shi in :issue:`42599`.)
711
Hugo van Kemenadec47c78b2021-01-13 01:16:37 +0200712* Remove deprecated aliases to :ref:`collections-abstract-base-classes` from
713 the :mod:`collections` module.
714 (Contributed by Victor Stinner in :issue:`37324`.)
715
Ken Jindcea78f2021-01-20 16:16:12 -0800716* The ``loop`` parameter has been removed from most of :mod:`asyncio`\ 's
717 :doc:`high-level API <../library/asyncio-api-index>` following deprecation
718 in Python 3.8. The motivation behind this change is multifold:
719
720 1. This simplifies the high-level API.
721 2. The functions in the high-level API have been implicitly getting the
722 current thread's running event loop since Python 3.7. There isn't a need to
723 pass the event loop to the API in most normal use cases.
724 3. Event loop passing is error-prone especially when dealing with loops
725 running in different threads.
726
727 Note that the low-level API will still accept ``loop``.
728 See `Changes in the Python API`_ for examples of how to replace existing code.
729
730 (Contributed by Yurii Karabas, Andrew Svetlov, Yury Selivanov and Kyle Stanley
731 in :issue:`42392`.)
732
Hai Shi0f91f582020-12-08 22:42:42 +0800733
Pablo Galindod4fe0982020-05-19 03:33:01 +0100734Porting to Python 3.10
735======================
736
737This section lists previously described changes and other bugfixes
738that may require changes to your code.
739
740
Zackery Spytz91e93792020-11-05 15:18:44 -0700741Changes in the Python API
742-------------------------
743
744* The *etype* parameters of the :func:`~traceback.format_exception`,
745 :func:`~traceback.format_exception_only`, and
746 :func:`~traceback.print_exception` functions in the :mod:`traceback` module
747 have been renamed to *exc*.
748 (Contributed by Zackery Spytz and Matthias Bussonnier in :issue:`26389`.)
749
Victor Stinner357704c2020-12-14 23:07:54 +0100750* :mod:`atexit`: At Python exit, if a callback registered with
751 :func:`atexit.register` fails, its exception is now logged. Previously, only
752 some exceptions were logged, and the last exception was always silently
753 ignored.
754 (Contributed by Victor Stinner in :issue:`42639`.)
755
kjd75f6f72020-12-19 01:39:26 +0800756* :class:`collections.abc.Callable` generic now flattens type parameters, similar
757 to what :data:`typing.Callable` currently does. This means that
758 ``collections.abc.Callable[[int, str], str]`` will have ``__args__`` of
759 ``(int, str, str)``; previously this was ``([int, str], str)``. Code which
760 accesses the arguments via :func:`typing.get_args` or ``__args__`` need to account
761 for this change. Furthermore, :exc:`TypeError` may be raised for invalid forms
762 of parameterizing :class:`collections.abc.Callable` which may have passed
763 silently in Python 3.9.
764 (Contributed by Ken Jin in :issue:`42195`.)
Victor Stinner357704c2020-12-14 23:07:54 +0100765
Erlend Egeberg Aaslandf4936ad2020-12-31 14:16:50 +0100766* :meth:`socket.htons` and :meth:`socket.ntohs` now raise :exc:`OverflowError`
767 instead of :exc:`DeprecationWarning` if the given parameter will not fit in
768 a 16-bit unsigned integer.
769 (Contributed by Erlend E. Aasland in :issue:`42393`.)
770
Ken Jindcea78f2021-01-20 16:16:12 -0800771* The ``loop`` parameter has been removed from most of :mod:`asyncio`\ 's
772 :doc:`high-level API <../library/asyncio-api-index>` following deprecation
773 in Python 3.8.
774
775 A coroutine that currently look like this::
776
777 async def foo(loop):
778 await asyncio.sleep(1, loop=loop)
779
780 Should be replaced with this::
781
782 async def foo():
783 await asyncio.sleep(1)
784
785 If ``foo()`` was specifically designed *not* to run in the current thread's
786 running event loop (e.g. running in another thread's event loop), consider
787 using :func:`asyncio.run_coroutine_threadsafe` instead.
788
789 (Contributed by Yurii Karabas, Andrew Svetlov, Yury Selivanov and Kyle Stanley
790 in :issue:`42392`.)
Erlend Egeberg Aaslandf4936ad2020-12-31 14:16:50 +0100791
Yurii Karabas73019792020-11-25 12:43:18 +0200792CPython bytecode changes
793========================
794
795* The ``MAKE_FUNCTION`` instruction accepts tuple of strings as annotations
796 instead of dictionary.
797 (Contributed by Yurii Karabas and Inada Naoki in :issue:`42202`)
Dong-hee Naad3252b2020-05-26 01:52:54 +0900798
799Build Changes
800=============
801
Victor Stinner7ab92d52020-06-16 00:54:44 +0200802* The C99 functions :c:func:`snprintf` and :c:func:`vsnprintf` are now required
803 to build Python.
804 (Contributed by Victor Stinner in :issue:`36020`.)
805
Erlend Egeberg Aaslandcf0b2392021-01-06 01:02:43 +0100806* :mod:`sqlite3` requires SQLite 3.7.15 or higher. (Contributed by Sergey Fedoseev
807 and Erlend E. Aasland :issue:`40744` and :issue:`40810`.)
Erlend Egeberg Aasland207c3212020-09-07 23:26:54 +0200808
Victor Stinner357704c2020-12-14 23:07:54 +0100809* The :mod:`atexit` module must now always be built as a built-in module.
810 (Contributed by Victor Stinner in :issue:`42639`.)
Erlend Egeberg Aasland207c3212020-09-07 23:26:54 +0200811
pxinwr277ce302020-12-30 20:50:39 +0800812* Added ``--disable-test-modules`` option to the ``configure`` script:
813 don't build nor install test modules.
814 (Contributed by Xavier de Gaye, Thomas Petazzoni and Peixing Xin in :issue:`27640`.)
815
Victor Stinner75e59a92021-01-20 17:07:21 +0100816* Add ``--with-wheel-pkg-dir=PATH`` option to the ``./configure`` script. If
817 specified, the :mod:`ensurepip` module looks for ``setuptools`` and ``pip``
818 wheel packages in this directory: if both are present, these wheel packages
819 are used instead of ensurepip bundled wheel packages.
820
821 Some Linux distribution packaging policies recommend against bundling
822 dependencies. For example, Fedora installs wheel packages in the
823 ``/usr/share/python-wheels/`` directory and don't install the
824 ``ensurepip._bundled`` package.
825
826 (Contributed by Victor Stinner in :issue:`42856`.)
827
Victor Stinner801bb0b2021-02-17 11:14:42 +0100828* Add a new configure ``--without-static-libpython`` option to not build the
829 ``libpythonMAJOR.MINOR.a`` static library and not install the ``python.o``
830 object file.
831
832 (Contributed by Victor Stinner in :issue:`43103`.)
833
Dong-hee Naad3252b2020-05-26 01:52:54 +0900834
835C API Changes
836=============
837
838New Features
839------------
840
Victor Stinnerdd8a93e2020-06-30 00:49:03 +0200841* The result of :c:func:`PyNumber_Index` now always has exact type :class:`int`.
Serhiy Storchaka5f4b229d2020-05-28 10:33:45 +0300842 Previously, the result could have been an instance of a subclass of ``int``.
843 (Contributed by Serhiy Storchaka in :issue:`40792`.)
844
Victor Stinnerdd8a93e2020-06-30 00:49:03 +0200845* Add a new :c:member:`~PyConfig.orig_argv` member to the :c:type:`PyConfig`
846 structure: the list of the original command line arguments passed to the
847 Python executable.
848 (Contributed by Victor Stinner in :issue:`23427`.)
Dong-hee Naad3252b2020-05-26 01:52:54 +0900849
Zackery Spytz2e4dd332020-09-23 12:43:45 -0600850* The :c:func:`PyDateTime_DATE_GET_TZINFO` and
851 :c:func:`PyDateTime_TIME_GET_TZINFO` macros have been added for accessing
852 the ``tzinfo`` attributes of :class:`datetime.datetime` and
853 :class:`datetime.time` objects.
854 (Contributed by Zackery Spytz in :issue:`30155`.)
855
Hai Shid332e7b2020-09-29 05:41:11 +0800856* Add a :c:func:`PyCodec_Unregister` function to unregister a codec
857 search function.
858 (Contributed by Hai Shi in :issue:`41842`.)
859
Vladimir Matveev24a54c02020-10-12 12:10:42 -0700860* The :c:func:`PyIter_Send` function was added to allow
Vladimir Matveev037245c2020-10-09 17:15:15 -0700861 sending value into iterator without raising ``StopIteration`` exception.
862 (Contributed by Vladimir Matveev in :issue:`41756`.)
863
Alex Gaynor3a8fdb22020-10-19 18:17:50 -0400864* Added :c:func:`PyUnicode_AsUTF8AndSize` to the limited C API.
865 (Contributed by Alex Gaynor in :issue:`41784`.)
866
Victor Stinner80218752020-11-04 13:59:15 +0100867* Added :c:func:`PyModule_AddObjectRef` function: similar to
Victor Stinner95ce7cd2020-11-11 01:52:26 +0100868 :c:func:`PyModule_AddObject` but don't steal a reference to the value on
Victor Stinner80218752020-11-04 13:59:15 +0100869 success.
870 (Contributed by Victor Stinner in :issue:`1635741`.)
871
Victor Stinner53a03aa2020-11-05 15:02:12 +0100872* Added :c:func:`Py_NewRef` and :c:func:`Py_XNewRef` functions to increment the
873 reference count of an object and return the object.
874 (Contributed by Victor Stinner in :issue:`42262`.)
875
Serhiy Storchaka686c2032020-11-22 13:25:02 +0200876* The :c:func:`PyType_FromSpecWithBases` and :c:func:`PyType_FromModuleAndSpec`
877 functions now accept a single class as the *bases* argument.
878 (Contributed by Serhiy Storchaka in :issue:`42423`.)
879
Hai Shi88c2cfd2020-11-07 00:04:47 +0800880* The :c:func:`PyType_FromModuleAndSpec` function now accepts NULL ``tp_doc``
881 slot.
882 (Contributed by Hai Shi in :issue:`41832`.)
883
Hai Shia13b26c2020-11-11 04:53:46 +0800884* The :c:func:`PyType_GetSlot` function can accept static types.
885 (Contributed by Hai Shi and Petr Viktorin in :issue:`41073`.)
886
Alex Gaynor3a8fdb22020-10-19 18:17:50 -0400887
Dong-hee Naad3252b2020-05-26 01:52:54 +0900888Porting to Python 3.10
889----------------------
890
Victor Stinner37bb2892020-06-19 11:45:31 +0200891* The ``PY_SSIZE_T_CLEAN`` macro must now be defined to use
892 :c:func:`PyArg_ParseTuple` and :c:func:`Py_BuildValue` formats which use
893 ``#``: ``es#``, ``et#``, ``s#``, ``u#``, ``y#``, ``z#``, ``U#`` and ``Z#``.
894 See :ref:`Parsing arguments and building values
895 <arg-parsing>` and the :pep:`353`.
896 (Contributed by Victor Stinner in :issue:`40943`.)
897
Victor Stinnerfe2978b2020-05-27 14:55:10 +0200898* Since :c:func:`Py_REFCNT()` is changed to the inline static function,
899 ``Py_REFCNT(obj) = new_refcnt`` must be replaced with ``Py_SET_REFCNT(obj, new_refcnt)``:
Victor Stinnerdc24b8a2020-06-04 22:10:43 +0200900 see :c:func:`Py_SET_REFCNT()` (available since Python 3.9). For backward
901 compatibility, this macro can be used::
902
903 #if PY_VERSION_HEX < 0x030900A4
904 # define Py_SET_REFCNT(obj, refcnt) ((Py_REFCNT(obj) = (refcnt)), (void)0)
905 #endif
906
Victor Stinnerfe2978b2020-05-27 14:55:10 +0200907 (Contributed by Victor Stinner in :issue:`39573`.)
908
Victor Stinner59d3dce2020-06-02 14:03:25 +0200909* Calling :c:func:`PyDict_GetItem` without :term:`GIL` held had been allowed
910 for historical reason. It is no longer allowed.
911 (Contributed by Victor Stinner in :issue:`40839`.)
912
Inada Naoki038dd0f2020-06-30 15:26:56 +0900913* ``PyUnicode_FromUnicode(NULL, size)`` and ``PyUnicode_FromStringAndSize(NULL, size)``
914 raise ``DeprecationWarning`` now. Use :c:func:`PyUnicode_New` to allocate
915 Unicode object without initial data.
916 (Contributed by Inada Naoki in :issue:`36346`.)
917
Victor Stinner47e1afd2020-10-26 16:43:47 +0100918* The private ``_PyUnicode_Name_CAPI`` structure of the PyCapsule API
Victor Stinner84f73822020-10-27 04:36:22 +0100919 ``unicodedata.ucnhash_CAPI`` has been moved to the internal C API.
Victor Stinner920cb642020-10-26 19:19:36 +0100920 (Contributed by Victor Stinner in :issue:`42157`.)
Victor Stinner47e1afd2020-10-26 16:43:47 +0100921
Victor Stinnerace3f9a2020-11-10 21:10:22 +0100922* :c:func:`Py_GetPath`, :c:func:`Py_GetPrefix`, :c:func:`Py_GetExecPrefix`,
923 :c:func:`Py_GetProgramFullPath`, :c:func:`Py_GetPythonHome` and
924 :c:func:`Py_GetProgramName` functions now return ``NULL`` if called before
925 :c:func:`Py_Initialize` (before Python is initialized). Use the new
926 :ref:`Python Initialization Configuration API <init-config>` to get the
927 :ref:`Python Path Configuration. <init-path-config>`.
928 (Contributed by Victor Stinner in :issue:`42260`.)
929
Victor Stinner0ef96c22020-12-07 11:56:20 +0100930* :c:func:`PyList_SET_ITEM`, :c:func:`PyTuple_SET_ITEM` and
931 :c:func:`PyCell_SET` macros can no longer be used as l-value or r-value.
932 For example, ``x = PyList_SET_ITEM(a, b, c)`` and
933 ``PyList_SET_ITEM(a, b, c) = x`` now fail with a compiler error. It prevents
934 bugs like ``if (PyList_SET_ITEM (a, b, c) < 0) ...`` test.
935 (Contributed by Zackery Spytz and Victor Stinner in :issue:`30459`.)
936
Nicholas Sim4a6bf272021-02-19 22:55:46 +0800937* The non-limited API files ``odictobject.h``, ``parser_interface.h``,
938 ``picklebufobject.h``, ``pyarena.h``, ``pyctype.h``, ``pydebug.h``,
939 ``pyfpe.h``, and ``pytime.h`` have been moved to the ``Include/cpython``
940 directory. These files must not be included directly, as they are already
941 included in ``Python.h``: :ref:`Include Files <api-includes>`. If they have
942 been included directly, consider including ``Python.h`` instead.
943 (Contributed by Nicholas Sim in :issue:`35134`)
944
Victor Stinner583ee5a2020-10-02 14:49:00 +0200945Deprecated
946----------
947
948* The ``PyUnicode_InternImmortal()`` function is now deprecated
949 and will be removed in Python 3.12: use :c:func:`PyUnicode_InternInPlace`
950 instead.
951 (Contributed by Victor Stinner in :issue:`41692`.)
952
Dong-hee Naad3252b2020-05-26 01:52:54 +0900953Removed
954-------
Inada Naoki6f8a6ee2020-06-26 08:07:22 +0900955
956* ``PyObject_AsCharBuffer()``, ``PyObject_AsReadBuffer()``, ``PyObject_CheckReadBuffer()``,
957 and ``PyObject_AsWriteBuffer()`` are removed. Please migrate to new buffer protocol;
958 :c:func:`PyObject_GetBuffer` and :c:func:`PyBuffer_Release`.
Inada Naoki20a79022020-06-27 18:22:09 +0900959 (Contributed by Inada Naoki in :issue:`41103`.)
960
961* Removed ``Py_UNICODE_str*`` functions manipulating ``Py_UNICODE*`` strings.
962 (Contributed by Inada Naoki in :issue:`41123`.)
963
964 * ``Py_UNICODE_strlen``: use :c:func:`PyUnicode_GetLength` or
965 :c:macro:`PyUnicode_GET_LENGTH`
966 * ``Py_UNICODE_strcat``: use :c:func:`PyUnicode_CopyCharacters` or
967 :c:func:`PyUnicode_FromFormat`
968 * ``Py_UNICODE_strcpy``, ``Py_UNICODE_strncpy``: use
969 :c:func:`PyUnicode_CopyCharacters` or :c:func:`PyUnicode_Substring`
970 * ``Py_UNICODE_strcmp``: use :c:func:`PyUnicode_Compare`
971 * ``Py_UNICODE_strncmp``: use :c:func:`PyUnicode_Tailmatch`
972 * ``Py_UNICODE_strchr``, ``Py_UNICODE_strrchr``: use
973 :c:func:`PyUnicode_FindChar`
Inada Naokid9f2a132020-06-29 10:46:51 +0900974
975* Removed ``PyUnicode_GetMax()``. Please migrate to new (:pep:`393`) APIs.
976 (Contributed by Inada Naoki in :issue:`41103`.)
Inada Naokie4f1fe62020-06-29 13:00:43 +0900977
978* Removed ``PyLong_FromUnicode()``. Please migrate to :c:func:`PyLong_FromUnicodeObject`.
979 (Contributed by Inada Naoki in :issue:`41103`.)
Inada Naokib3332662020-06-30 12:23:07 +0900980
981* Removed ``PyUnicode_AsUnicodeCopy()``. Please use :c:func:`PyUnicode_AsUCS4Copy` or
982 :c:func:`PyUnicode_AsWideCharString`
983 (Contributed by Inada Naoki in :issue:`41103`.)
Victor Stinner19c3ac92020-09-23 14:04:57 +0200984
985* Removed ``_Py_CheckRecursionLimit`` variable: it has been replaced by
986 ``ceval.recursion_limit`` of the :c:type:`PyInterpreterState` structure.
987 (Contributed by Victor Stinner in :issue:`41834`.)
Serhiy Storchakadcc54212020-10-05 12:32:00 +0300988
989* Removed undocumented macros ``Py_ALLOW_RECURSION`` and
990 ``Py_END_ALLOW_RECURSION`` and the ``recursion_critical`` field of the
991 :c:type:`PyInterpreterState` structure.
992 (Contributed by Serhiy Storchaka in :issue:`41936`.)
Victor Stinner296a7962020-11-17 16:22:23 +0100993
994* Removed the undocumented ``PyOS_InitInterrupts()`` function. Initializing
995 Python already implicitly installs signal handlers: see
996 :c:member:`PyConfig.install_signal_handlers`.
997 (Contributed by Victor Stinner in :issue:`41713`.)