2021-05-07 05:06:45 -03:00
|
|
|
****************************
|
|
|
|
What's New In Python 3.11
|
|
|
|
****************************
|
|
|
|
|
|
|
|
:Release: |release|
|
|
|
|
:Date: |today|
|
|
|
|
|
|
|
|
.. Rules for maintenance:
|
|
|
|
|
|
|
|
* Anyone can add text to this document. Do not spend very much time
|
|
|
|
on the wording of your changes, because your text will probably
|
|
|
|
get rewritten to some degree.
|
|
|
|
|
|
|
|
* The maintainer will go through Misc/NEWS periodically and add
|
|
|
|
changes; it's therefore more important to add your changes to
|
|
|
|
Misc/NEWS than to this file.
|
|
|
|
|
|
|
|
* This is not a complete list of every single change; completeness
|
|
|
|
is the purpose of Misc/NEWS. Some changes I consider too small
|
|
|
|
or esoteric to include. If such a change is added to the text,
|
|
|
|
I'll just remove it. (This is another reason you shouldn't spend
|
|
|
|
too much time on writing your addition.)
|
|
|
|
|
|
|
|
* If you want to draw your new text to the attention of the
|
|
|
|
maintainer, add 'XXX' to the beginning of the paragraph or
|
|
|
|
section.
|
|
|
|
|
|
|
|
* It's OK to just add a fragmentary note about a change. For
|
|
|
|
example: "XXX Describe the transmogrify() function added to the
|
|
|
|
socket module." The maintainer will research the change and
|
|
|
|
write the necessary text.
|
|
|
|
|
|
|
|
* You can comment out your additions if you like, but it's not
|
|
|
|
necessary (especially when a final release is some months away).
|
|
|
|
|
|
|
|
* Credit the author of a patch or bugfix. Just the name is
|
|
|
|
sufficient; the e-mail address isn't necessary.
|
|
|
|
|
|
|
|
* It's helpful to add the bug/patch number as a comment:
|
|
|
|
|
|
|
|
XXX Describe the transmogrify() function added to the socket
|
|
|
|
module.
|
|
|
|
(Contributed by P.Y. Developer in :issue:`12345`.)
|
|
|
|
|
|
|
|
This saves the maintainer the effort of going through the Mercurial log
|
|
|
|
when researching a change.
|
|
|
|
|
|
|
|
This article explains the new features in Python 3.11, compared to 3.10.
|
|
|
|
|
2021-05-08 00:25:37 -03:00
|
|
|
For full details, see the :ref:`changelog <changelog>`.
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2022-08-12 12:50:01 -03:00
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
.. _whatsnew311-summary:
|
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
Summary -- Release highlights
|
|
|
|
=============================
|
|
|
|
|
|
|
|
.. This section singles out the most important changes in Python 3.11.
|
|
|
|
Brevity is key.
|
|
|
|
|
2022-08-12 12:50:01 -03:00
|
|
|
- Python 3.11 is between 10-60% faster than Python 3.10. On average, we measured a
|
2022-05-08 12:05:30 -03:00
|
|
|
1.25x speedup on the standard benchmark suite. See `Faster CPython`_ for details.
|
2021-05-07 05:06:45 -03:00
|
|
|
|
|
|
|
.. PEP-sized items next.
|
|
|
|
|
2022-03-09 07:31:56 -04:00
|
|
|
New syntax features:
|
|
|
|
|
|
|
|
* :pep:`654`: Exception Groups and ``except*``.
|
|
|
|
|
2022-08-12 12:50:01 -03:00
|
|
|
New built-in features:
|
|
|
|
|
|
|
|
* :pep:`678`: Enriching Exceptions with Notes.
|
|
|
|
|
|
|
|
New standard library modules:
|
|
|
|
|
|
|
|
* :pep:`680`: ``tomllib`` — Support for Parsing TOML in the Standard Library.
|
|
|
|
|
|
|
|
Interpreter improvements:
|
|
|
|
|
|
|
|
* :pep:`657`: Include Fine Grained Error Locations in Tracebacks.
|
|
|
|
* New :option:`-P` command line option and :envvar:`PYTHONSAFEPATH` environment
|
|
|
|
variable to disable automatically prepending a potentially unsafe path
|
|
|
|
(the working dir or script directory, depending on invocation)
|
|
|
|
to :data:`sys.path`.
|
|
|
|
|
2022-03-09 07:31:56 -04:00
|
|
|
New typing features:
|
|
|
|
|
2022-04-24 18:13:15 -03:00
|
|
|
* :pep:`646`: Variadic generics.
|
2022-07-05 06:16:10 -03:00
|
|
|
* :pep:`655`: Marking individual TypedDict items as required or potentially missing.
|
2022-04-24 18:13:15 -03:00
|
|
|
* :pep:`673`: ``Self`` type.
|
|
|
|
* :pep:`675`: Arbitrary literal string type.
|
2022-08-12 12:50:01 -03:00
|
|
|
* :pep:`681`: Data Class Transforms.
|
2022-04-24 18:13:15 -03:00
|
|
|
|
2022-08-12 12:50:01 -03:00
|
|
|
Important deprecations, removals or restrictions:
|
2022-05-05 23:53:00 -03:00
|
|
|
|
2022-08-12 12:50:01 -03:00
|
|
|
* :pep:`594`: Removing dead batteries from the standard library.
|
|
|
|
* :pep:`624`: Remove ``Py_UNICODE`` encoder APIs.
|
|
|
|
* :pep:`670`: Convert macros to functions in the Python C API.
|
2022-05-05 23:53:00 -03:00
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
.. _whatsnew311-features:
|
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
New Features
|
|
|
|
============
|
|
|
|
|
2021-07-12 21:29:39 -03:00
|
|
|
.. _whatsnew311-pep657:
|
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
PEP 657: Enhanced error locations in tracebacks
|
|
|
|
-----------------------------------------------
|
2021-07-12 21:29:39 -03:00
|
|
|
|
|
|
|
When printing tracebacks, the interpreter will now point to the exact expression
|
2022-09-19 10:32:51 -03:00
|
|
|
that caused the error, instead of just the line. For example:
|
2021-07-12 21:29:39 -03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
Traceback (most recent call last):
|
|
|
|
File "distance.py", line 11, in <module>
|
|
|
|
print(manhattan_distance(p1, p2))
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
File "distance.py", line 6, in manhattan_distance
|
|
|
|
return abs(point_1.x - point_2.x) + abs(point_1.y - point_2.y)
|
|
|
|
^^^^^^^^^
|
|
|
|
AttributeError: 'NoneType' object has no attribute 'x'
|
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
Previous versions of the interpreter would point to just the line, making it
|
2021-07-12 21:29:39 -03:00
|
|
|
ambiguous which object was ``None``. These enhanced errors can also be helpful
|
2022-09-19 10:32:51 -03:00
|
|
|
when dealing with deeply nested :class:`dict` objects and multiple function calls:
|
2021-07-12 21:29:39 -03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
Traceback (most recent call last):
|
|
|
|
File "query.py", line 37, in <module>
|
|
|
|
magic_arithmetic('foo')
|
|
|
|
File "query.py", line 18, in magic_arithmetic
|
|
|
|
return add_counts(x) / 25
|
|
|
|
^^^^^^^^^^^^^
|
|
|
|
File "query.py", line 24, in add_counts
|
|
|
|
return 25 + query_user(user1) + query_user(user2)
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
File "query.py", line 32, in query_user
|
|
|
|
return 1 + query_count(db, response['a']['b']['c']['user'], retry=True)
|
|
|
|
~~~~~~~~~~~~~~~~~~^^^^^
|
|
|
|
TypeError: 'NoneType' object is not subscriptable
|
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
As well as complex arithmetic expressions:
|
2021-07-12 21:29:39 -03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
Traceback (most recent call last):
|
|
|
|
File "calculation.py", line 54, in <module>
|
|
|
|
result = (x / y / z) * (a / b / c)
|
|
|
|
~~~~~~^~~
|
|
|
|
ZeroDivisionError: division by zero
|
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
Additionally, the information used by the enhanced traceback feature
|
|
|
|
is made available via a general API, that can be used to correlate
|
|
|
|
:term:`bytecode` :ref:`instructions <bytecodes>` with source code location.
|
|
|
|
This information can be retrieved using:
|
2021-07-12 21:29:39 -03:00
|
|
|
|
|
|
|
- The :meth:`codeobject.co_positions` method in Python.
|
2022-09-19 10:32:51 -03:00
|
|
|
- The :c:func:`PyCode_Addr2Location` function in the C API.
|
2021-07-12 21:29:39 -03:00
|
|
|
|
|
|
|
See :pep:`657` for more details. (Contributed by Pablo Galindo, Batuhan Taskaya
|
|
|
|
and Ammar Askar in :issue:`43950`.)
|
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
.. note::
|
|
|
|
This feature requires storing column positions in :ref:`codeobjects`,
|
|
|
|
which may result in a small increase in interpreter memory usage
|
|
|
|
and disk usage for compiled Python files.
|
|
|
|
To avoid storing the extra information
|
|
|
|
and deactivate printing the extra traceback information,
|
|
|
|
use the :option:`-X no_debug_ranges <-X>` command line option
|
|
|
|
or the :envvar:`PYTHONNODEBUGRANGES` environment variable.
|
|
|
|
|
|
|
|
|
|
|
|
.. _whatsnew311-pep654:
|
2022-08-13 08:49:04 -03:00
|
|
|
|
|
|
|
PEP 654: Exception Groups and ``except*``
|
|
|
|
-----------------------------------------
|
|
|
|
|
|
|
|
:pep:`654` introduces language features that enable a program
|
|
|
|
to raise and handle multiple unrelated exceptions simultaneously.
|
|
|
|
The builtin types :exc:`ExceptionGroup` and :exc:`BaseExceptionGroup`
|
|
|
|
make it possible to group exceptions and raise them together,
|
|
|
|
and the new :keyword:`except* <except_star>` syntax generalizes
|
|
|
|
:keyword:`except` to match subgroups of exception groups.
|
|
|
|
|
|
|
|
See :pep:`654` for more details.
|
|
|
|
|
|
|
|
(Contributed by Irit Katriel in :issue:`45292`. PEP written by
|
|
|
|
Irit Katriel, Yury Selivanov and Guido van Rossum.)
|
|
|
|
|
|
|
|
|
2022-10-03 01:12:37 -03:00
|
|
|
.. _whatsnew311-pep678:
|
2022-09-19 10:32:51 -03:00
|
|
|
|
2022-08-13 08:49:04 -03:00
|
|
|
PEP 678: Exceptions can be enriched with notes
|
2022-09-19 10:32:51 -03:00
|
|
|
----------------------------------------------
|
|
|
|
|
|
|
|
The :meth:`~BaseException.add_note` method is added to :exc:`BaseException`.
|
|
|
|
It can be used to enrich exceptions with context information
|
|
|
|
that is not available at the time when the exception is raised.
|
|
|
|
The added notes appear in the default traceback.
|
|
|
|
|
|
|
|
See :pep:`678` for more details.
|
2022-04-16 15:59:52 -03:00
|
|
|
|
2022-09-19 10:32:51 -03:00
|
|
|
(Contributed by Irit Katriel in :issue:`45607`.
|
|
|
|
PEP written by Zac Hatfield-Dodds.)
|
2021-12-03 18:01:15 -04:00
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2022-10-04 19:50:34 -03:00
|
|
|
.. _whatsnew311-windows-launcher:
|
|
|
|
|
|
|
|
Windows ``py.exe`` launcher improvements
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
The copy of the :ref:`launcher` included with Python 3.11 has been significantly
|
|
|
|
updated. It now supports company/tag syntax as defined in :pep:`514` using the
|
|
|
|
``-V:<company>/<tag>`` argument instead of the limited ``-<major>.<minor>``.
|
|
|
|
This allows launching distributions other than ``PythonCore``,
|
|
|
|
the one hosted on `python.org <https://python.org>`_.
|
|
|
|
|
|
|
|
When using ``-V:`` selectors, either company or tag can be omitted, but all
|
|
|
|
installs will be searched. For example, ``-V:OtherPython/`` will select the
|
|
|
|
"best" tag registered for ``OtherPython``, while ``-V:3.11`` or ``-V:/3.11``
|
|
|
|
will select the "best" distribution with tag ``3.11``.
|
|
|
|
|
|
|
|
When using the legacy ``-<major>``, ``-<major>.<minor>``,
|
|
|
|
``-<major>-<bitness>`` or ``-<major>.<minor>-<bitness>`` arguments,
|
|
|
|
all existing behaviour should be preserved from past versions,
|
|
|
|
and only releases from ``PythonCore`` will be selected.
|
|
|
|
However, the ``-64`` suffix now implies "not 32-bit" (not necessarily x86-64),
|
|
|
|
as there are multiple supported 64-bit platforms.
|
|
|
|
32-bit runtimes are detected by checking the runtime's tag for a ``-32`` suffix.
|
|
|
|
All releases of Python since 3.5 have included this in their 32-bit builds.
|
|
|
|
|
|
|
|
|
2022-04-24 18:13:15 -03:00
|
|
|
.. _new-feat-related-type-hints-311:
|
2022-09-19 10:44:01 -03:00
|
|
|
.. _whatsnew311-typing-features:
|
2022-04-24 18:13:15 -03:00
|
|
|
|
|
|
|
New Features Related to Type Hints
|
|
|
|
==================================
|
|
|
|
|
|
|
|
This section covers major changes affecting :pep:`484` type hints and
|
|
|
|
the :mod:`typing` module.
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
|
|
|
|
.. _whatsnew311-pep646:
|
|
|
|
|
2022-04-24 18:13:15 -03:00
|
|
|
PEP 646: Variadic generics
|
|
|
|
--------------------------
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
:pep:`484` previously introduced :data:`~typing.TypeVar`, enabling creation
|
|
|
|
of generics parameterised with a single type. :pep:`646` adds
|
2022-04-24 18:13:15 -03:00
|
|
|
:data:`~typing.TypeVarTuple`, enabling parameterisation
|
|
|
|
with an *arbitrary* number of types. In other words,
|
|
|
|
a :data:`~typing.TypeVarTuple` is a *variadic* type variable,
|
2022-09-19 10:44:01 -03:00
|
|
|
enabling *variadic* generics.
|
|
|
|
|
|
|
|
This enables a wide variety of use cases.
|
2022-04-24 18:13:15 -03:00
|
|
|
In particular, it allows the type of array-like structures
|
|
|
|
in numerical computing libraries such as NumPy and TensorFlow to be
|
|
|
|
parameterised with the array *shape*. Static type checkers will now
|
|
|
|
be able to catch shape-related bugs in code that uses these libraries.
|
|
|
|
|
|
|
|
See :pep:`646` for more details.
|
|
|
|
|
|
|
|
(Contributed by Matthew Rahtz in :issue:`43224`, with contributions by
|
|
|
|
Serhiy Storchaka and Jelle Zijlstra. PEP written by Mark Mendoza, Matthew
|
|
|
|
Rahtz, Pradeep Kumar Srinivasan, and Vincent Siles.)
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
|
|
|
|
.. _whatsnew311-pep655:
|
|
|
|
|
2022-04-24 18:13:15 -03:00
|
|
|
PEP 655: Marking individual ``TypedDict`` items as required or not-required
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
:data:`~typing.Required` and :data:`~typing.NotRequired` provide a
|
|
|
|
straightforward way to mark whether individual items in a
|
2022-09-19 10:44:01 -03:00
|
|
|
:class:`~typing.TypedDict` must be present. Previously, this was only possible
|
2022-04-24 18:13:15 -03:00
|
|
|
using inheritance.
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
All fields are still required by default,
|
|
|
|
unless the *total* parameter is set to ``False``,
|
|
|
|
in which case all fields are still not-required by default.
|
|
|
|
For example, the following specifies a :class:`!TypedDict`
|
|
|
|
with one required and one not-required key::
|
2022-04-24 18:13:15 -03:00
|
|
|
|
|
|
|
class Movie(TypedDict):
|
|
|
|
title: str
|
|
|
|
year: NotRequired[int]
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
m1: Movie = {"title": "Black Panther", "year": 2018} # OK
|
|
|
|
m2: Movie = {"title": "Star Wars"} # OK (year is not required)
|
|
|
|
m3: Movie = {"year": 2022} # ERROR (missing required field title)
|
2022-04-24 18:13:15 -03:00
|
|
|
|
|
|
|
The following definition is equivalent::
|
|
|
|
|
|
|
|
class Movie(TypedDict, total=False):
|
|
|
|
title: Required[str]
|
|
|
|
year: int
|
|
|
|
|
|
|
|
See :pep:`655` for more details.
|
|
|
|
|
|
|
|
(Contributed by David Foster and Jelle Zijlstra in :issue:`47087`. PEP
|
|
|
|
written by David Foster.)
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
|
|
|
|
.. _whatsnew311-pep673:
|
|
|
|
|
2022-04-24 18:13:15 -03:00
|
|
|
PEP 673: ``Self`` type
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
The new :data:`~typing.Self` annotation provides a simple and intuitive
|
|
|
|
way to annotate methods that return an instance of their class. This
|
2022-09-19 10:44:01 -03:00
|
|
|
behaves the same as the :class:`~typing.TypeVar`-based approach
|
|
|
|
:pep:`specified in PEP 484 <484#annotating-instance-and-class-methods>`,
|
|
|
|
but is more concise and easier to follow.
|
2022-04-24 18:13:15 -03:00
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
Common use cases include alternative constructors provided as
|
|
|
|
:func:`classmethod <classmethod>`\s,
|
2022-04-24 18:13:15 -03:00
|
|
|
and :meth:`~object.__enter__` methods that return ``self``::
|
|
|
|
|
|
|
|
class MyLock:
|
|
|
|
def __enter__(self) -> Self:
|
|
|
|
self.lock()
|
|
|
|
return self
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
class MyInt:
|
|
|
|
@classmethod
|
|
|
|
def fromhex(cls, s: str) -> Self:
|
|
|
|
return cls(int(s, 16))
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
:data:`~typing.Self` can also be used to annotate method parameters
|
|
|
|
or attributes of the same type as their enclosing class.
|
|
|
|
|
|
|
|
See :pep:`673` for more details.
|
|
|
|
|
|
|
|
(Contributed by James Hilton-Balfe in :issue:`46534`. PEP written by
|
|
|
|
Pradeep Kumar Srinivasan and James Hilton-Balfe.)
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
|
|
|
|
.. _whatsnew311-pep675:
|
|
|
|
|
2022-04-24 18:13:15 -03:00
|
|
|
PEP 675: Arbitrary literal string type
|
|
|
|
--------------------------------------
|
|
|
|
|
|
|
|
The new :data:`~typing.LiteralString` annotation may be used to indicate
|
|
|
|
that a function parameter can be of any literal string type. This allows
|
|
|
|
a function to accept arbitrary literal string types, as well as strings
|
|
|
|
created from other literal strings. Type checkers can then
|
|
|
|
enforce that sensitive functions, such as those that execute SQL
|
|
|
|
statements or shell commands, are called only with static arguments,
|
|
|
|
providing protection against injection attacks.
|
|
|
|
|
|
|
|
For example, a SQL query function could be annotated as follows::
|
|
|
|
|
|
|
|
def run_query(sql: LiteralString) -> ...
|
|
|
|
...
|
|
|
|
|
|
|
|
def caller(
|
|
|
|
arbitrary_string: str,
|
|
|
|
query_string: LiteralString,
|
|
|
|
table_name: LiteralString,
|
|
|
|
) -> None:
|
|
|
|
run_query("SELECT * FROM students") # ok
|
|
|
|
run_query(query_string) # ok
|
|
|
|
run_query("SELECT * FROM " + table_name) # ok
|
|
|
|
run_query(arbitrary_string) # type checker error
|
|
|
|
run_query( # type checker error
|
|
|
|
f"SELECT * FROM students WHERE name = {arbitrary_string}"
|
|
|
|
)
|
|
|
|
|
|
|
|
See :pep:`675` for more details.
|
|
|
|
|
|
|
|
(Contributed by Jelle Zijlstra in :issue:`47088`. PEP written by Pradeep
|
|
|
|
Kumar Srinivasan and Graham Bleaney.)
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
|
|
|
|
.. _whatsnew311-pep681:
|
|
|
|
|
2022-04-30 00:12:45 -03:00
|
|
|
PEP 681: Data Class Transforms
|
|
|
|
------------------------------
|
|
|
|
|
2022-05-20 11:32:29 -03:00
|
|
|
:data:`~typing.dataclass_transform` may be used to
|
|
|
|
decorate a class, metaclass, or a function that is itself a decorator.
|
2022-04-30 00:12:45 -03:00
|
|
|
The presence of ``@dataclass_transform()`` tells a static type checker that the
|
2022-09-19 10:44:01 -03:00
|
|
|
decorated object performs runtime "magic" that transforms a class,
|
|
|
|
giving it :func:`dataclass <dataclasses.dataclass>`-like behaviors.
|
2022-04-30 00:12:45 -03:00
|
|
|
|
|
|
|
For example::
|
|
|
|
|
2022-05-23 18:45:16 -03:00
|
|
|
# The create_model decorator is defined by a library.
|
2022-04-30 00:12:45 -03:00
|
|
|
@typing.dataclass_transform()
|
2022-05-20 11:32:29 -03:00
|
|
|
def create_model(cls: Type[T]) -> Type[T]:
|
2022-04-30 00:12:45 -03:00
|
|
|
cls.__init__ = ...
|
|
|
|
cls.__eq__ = ...
|
|
|
|
cls.__ne__ = ...
|
|
|
|
return cls
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
# The create_model decorator can now be used to create new model classes:
|
2022-04-30 00:12:45 -03:00
|
|
|
@create_model
|
|
|
|
class CustomerModel:
|
|
|
|
id: int
|
|
|
|
name: str
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
c = CustomerModel(id=327, name="Eric Idle")
|
2022-04-30 00:12:45 -03:00
|
|
|
|
|
|
|
See :pep:`681` for more details.
|
|
|
|
|
|
|
|
(Contributed by Jelle Zijlstra in :gh:`91860`. PEP written by
|
|
|
|
Erik De Bonte and Eric Traut.)
|
2022-04-24 18:13:15 -03:00
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
|
|
|
|
.. _whatsnew311-pep563-deferred:
|
|
|
|
|
|
|
|
PEP 563 may not be the future
|
2022-07-05 05:46:39 -03:00
|
|
|
-----------------------------
|
|
|
|
|
2022-09-19 10:44:01 -03:00
|
|
|
:pep:`563` Postponed Evaluation of Annotations
|
|
|
|
(the ``from __future__ import annotations`` :ref:`future statement <future>`)
|
|
|
|
that was originally planned for release in Python 3.10
|
|
|
|
has been put on hold indefinitely.
|
|
|
|
See `this message from the Steering Council <https://mail.python.org/archives/list/python-dev@python.org/message/VIZEBX5EYMSYIJNDBF6DMUMZOCWHARSO/>`__
|
|
|
|
for more information.
|
|
|
|
|
2022-07-05 05:46:39 -03:00
|
|
|
|
2022-10-04 20:16:37 -03:00
|
|
|
.. _whatsnew311-other-lang-changes:
|
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
Other Language Changes
|
|
|
|
======================
|
|
|
|
|
2022-10-04 20:16:37 -03:00
|
|
|
* Starred unpacking expressions can now be used in :keyword:`for` statements.
|
|
|
|
(See :issue:`46725` for more details.)
|
2021-07-13 18:27:50 -03:00
|
|
|
|
2022-10-04 20:16:37 -03:00
|
|
|
* Asynchronous :ref:`comprehensions <comprehensions>` are now allowed
|
|
|
|
inside comprehensions in :ref:`asynchronous functions <async def>`.
|
|
|
|
Outer comprehensions implicitly become asynchronous in this case.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`33346`.)
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2021-06-29 08:16:53 -03:00
|
|
|
* A :exc:`TypeError` is now raised instead of an :exc:`AttributeError` in
|
2022-10-04 20:16:37 -03:00
|
|
|
:keyword:`with` statements and :meth:`contextlib.ExitStack.enter_context`
|
|
|
|
for objects that do not support the :term:`context manager` protocol,
|
|
|
|
and in :keyword:`async with` statements and
|
|
|
|
:meth:`contextlib.AsyncExitStack.enter_async_context`
|
|
|
|
for objects not supporting the :term:`asynchronous context manager` protocol.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`12022` and :issue:`44471`.)
|
|
|
|
|
|
|
|
* Added :meth:`object.__getstate__`, which provides the default
|
|
|
|
implementation of the :meth:`!__getstate__` method. :mod:`copy`\ing
|
|
|
|
and :mod:`pickle`\ing instances of subclasses of builtin types
|
2022-04-06 14:00:14 -03:00
|
|
|
:class:`bytearray`, :class:`set`, :class:`frozenset`,
|
|
|
|
:class:`collections.OrderedDict`, :class:`collections.deque`,
|
|
|
|
:class:`weakref.WeakSet`, and :class:`datetime.tzinfo` now copies and
|
|
|
|
pickles instance attributes implemented as :term:`slots <__slots__>`.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`26579`.)
|
|
|
|
|
2022-10-04 20:16:37 -03:00
|
|
|
* Added a :option:`-P` command line option
|
|
|
|
and a :envvar:`PYTHONSAFEPATH` environment variable,
|
|
|
|
which disable the automatic prepending to :data:`sys.path`
|
|
|
|
of the script's directory when running a script,
|
|
|
|
or the current directory when using :option:`-c` and :option:`-m`.
|
|
|
|
This ensures only stdlib and installed modules
|
|
|
|
are picked up by :keyword:`import`,
|
|
|
|
and avoids unintentionally or maliciously shadowing modules
|
|
|
|
with those in a local (and typically user-writable) directory.
|
2022-05-05 20:34:11 -03:00
|
|
|
(Contributed by Victor Stinner in :gh:`57684`.)
|
|
|
|
|
2022-10-04 20:16:37 -03:00
|
|
|
* A ``"z"`` option was added to the :ref:`formatspec` that
|
|
|
|
coerces negative to positive zero after rounding to the format precision.
|
|
|
|
See :pep:`682` for more details.
|
|
|
|
(Contributed by John Belmonte in :gh:`90153`.)
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2022-10-04 20:16:37 -03:00
|
|
|
* Bytes are no longer accepted on :data:`sys.path`. Support broke sometime
|
|
|
|
between Python 3.2 and 3.6, with no one noticing until after Python 3.10.0
|
|
|
|
was released. In addition, bringing back support would be problematic due to
|
|
|
|
interactions between :option:`-b` and :data:`sys.path_importer_cache` when
|
|
|
|
there is a mixture of :class:`str` and :class:`bytes` keys.
|
2022-07-16 23:14:40 -03:00
|
|
|
(Contributed by Thomas Grainger in :gh:`91181`.)
|
|
|
|
|
2021-08-23 07:01:51 -03:00
|
|
|
Other CPython Implementation Changes
|
|
|
|
====================================
|
|
|
|
|
|
|
|
* Special methods :meth:`complex.__complex__` and :meth:`bytes.__bytes__` are implemented to
|
|
|
|
support :class:`typing.SupportsComplex` and :class:`typing.SupportsBytes` protocols.
|
|
|
|
(Contributed by Mark Dickinson and Dong-hee Na in :issue:`24234`.)
|
|
|
|
|
2022-03-25 14:32:05 -03:00
|
|
|
* ``siphash13`` is added as a new internal hashing algorithms. It has similar security
|
2021-10-10 05:29:46 -03:00
|
|
|
properties as ``siphash24`` but it is slightly faster for long inputs. ``str``, ``bytes``,
|
2022-03-25 14:32:05 -03:00
|
|
|
and some other types now use it as default algorithm for :func:`hash`. :pep:`552`
|
2021-10-10 05:29:46 -03:00
|
|
|
hash-based pyc files now use ``siphash13``, too.
|
|
|
|
(Contributed by Inada Naoki in :issue:`29410`.)
|
2021-08-23 07:01:51 -03:00
|
|
|
|
2021-11-30 18:37:04 -04:00
|
|
|
* When an active exception is re-raised by a :keyword:`raise` statement with no parameters,
|
|
|
|
the traceback attached to this exception is now always ``sys.exc_info()[1].__traceback__``.
|
|
|
|
This means that changes made to the traceback in the current :keyword:`except` clause are
|
|
|
|
reflected in the re-raised exception.
|
|
|
|
(Contributed by Irit Katriel in :issue:`45711`.)
|
|
|
|
|
2021-12-17 10:46:22 -04:00
|
|
|
* The interpreter state's representation of handled exceptions (a.k.a exc_info, or
|
|
|
|
_PyErr_StackItem) now has only the ``exc_value`` field, ``exc_type`` and ``exc_traceback``
|
|
|
|
have been removed as their values can be derived from ``exc_value``.
|
|
|
|
(Contributed by Irit Katriel in :issue:`45711`.)
|
|
|
|
|
2022-03-25 14:32:05 -03:00
|
|
|
* A new command line option for the Windows installer ``AppendPath`` has been added.
|
2022-01-17 20:18:44 -04:00
|
|
|
It behaves similiar to ``PrependPath`` but appends the install and scripts directories
|
2022-03-25 14:32:05 -03:00
|
|
|
instead of prepending them.
|
2022-01-17 20:18:44 -04:00
|
|
|
(Contributed by Bastian Neuburger in :issue:`44934`.)
|
|
|
|
|
2022-05-19 16:23:53 -03:00
|
|
|
* The :c:member:`PyConfig.module_search_paths_set` field must now be set to 1 for
|
|
|
|
initialization to use :c:member:`PyConfig.module_search_paths` to initialize
|
|
|
|
:data:`sys.path`. Otherwise, initialization will recalculate the path and replace
|
|
|
|
any values added to ``module_search_paths``.
|
|
|
|
|
2022-08-12 13:22:25 -03:00
|
|
|
* The output of the :option:`--help` option is changed to fit inside 50 lines and 80
|
|
|
|
columns. Information about :ref:`Python environment variables <using-on-envvars>`
|
|
|
|
and :option:`-X options <-X>` is available with the new :option:`--help-env` or
|
|
|
|
:option:`--help-xoptions` flags, and with :option:`--help-all`.
|
|
|
|
(Contributed by Éric Araujo in :issue:`46142`.)
|
|
|
|
|
2022-01-17 20:18:44 -04:00
|
|
|
|
2022-10-03 01:04:10 -03:00
|
|
|
.. _whatsnew311-new-modules:
|
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
New Modules
|
|
|
|
===========
|
|
|
|
|
2022-10-03 01:04:10 -03:00
|
|
|
* :mod:`tomllib`: For parsing `TOML <https://toml.io/>`_.
|
|
|
|
See :pep:`680` for more details.
|
2022-03-08 04:26:13 -04:00
|
|
|
(Contributed by Taneli Hukkinen in :issue:`40059`.)
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2022-10-03 01:04:10 -03:00
|
|
|
* :mod:`wsgiref.types`:
|
|
|
|
:pep:`WSGI <3333>`-specific types for static type checking.
|
2022-04-16 14:37:58 -03:00
|
|
|
(Contributed by Sebastian Rittau in :issue:`42012`.)
|
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
|
|
|
|
Improved Modules
|
|
|
|
================
|
|
|
|
|
2022-10-04 15:36:20 -03:00
|
|
|
.. _whatsnew311-asyncio:
|
|
|
|
|
2022-03-13 13:42:29 -03:00
|
|
|
asyncio
|
|
|
|
-------
|
|
|
|
|
2022-10-04 15:36:20 -03:00
|
|
|
* Added the :class:`~asyncio.TaskGroup` class,
|
2022-06-30 13:16:22 -03:00
|
|
|
an :ref:`asynchronous context manager <async-context-managers>`
|
|
|
|
holding a group of tasks that will wait for all of them upon exit.
|
2022-10-04 15:36:20 -03:00
|
|
|
For new code this is recommended over using
|
|
|
|
:func:`~asyncio.create_task` and :func:`~asyncio.gather` directly.
|
|
|
|
(Contributed by Yury Selivanov and others in :gh:`90908`.)
|
|
|
|
|
|
|
|
* Added :func:`~asyncio.timeout`, an asynchronous context manager for
|
|
|
|
setting a timeout on asynchronous operations. For new code this is
|
|
|
|
recommended over using :func:`~asyncio.wait_for` directly.
|
|
|
|
(Contributed by Andrew Svetlov in :gh:`90927`.)
|
|
|
|
|
|
|
|
* Added the :class:`~asyncio.Runner` class, which exposes the machinery
|
|
|
|
used by :func:`~asyncio.run`.
|
|
|
|
(Contributed by Andrew Svetlov in :gh:`91218`.)
|
|
|
|
|
|
|
|
* Added the :class:`~asyncio.Barrier` class to the synchronization
|
|
|
|
primitives in the asyncio library, and the related
|
|
|
|
:exc:`~asyncio.BrokenBarrierError` exception.
|
|
|
|
(Contributed by Yves Duprat and Andrew Svetlov in :gh:`87518`.)
|
|
|
|
|
|
|
|
* Added keyword argument *all_errors* to :meth:`asyncio.loop.create_connection`
|
|
|
|
so that multiple connection errors can be raised as an :exc:`ExceptionGroup`.
|
|
|
|
|
|
|
|
* Added the :meth:`asyncio.StreamWriter.start_tls` method for
|
|
|
|
upgrading existing stream-based connections to TLS.
|
|
|
|
(Contributed by Ian Good in :issue:`34975`.)
|
|
|
|
|
|
|
|
* Added raw datagram socket functions to the event loop:
|
|
|
|
:meth:`~asyncio.loop.sock_sendto`,
|
|
|
|
:meth:`~asyncio.loop.sock_recvfrom` and
|
|
|
|
:meth:`~asyncio.loop.sock_recvfrom_into`.
|
|
|
|
These have implementations in :class:`~asyncio.SelectorEventLoop` and
|
|
|
|
:class:`~asyncio.ProactorEventLoop`.
|
|
|
|
(Contributed by Alex Grönholm in :issue:`46805`.)
|
|
|
|
|
|
|
|
* Added :meth:`~asyncio.Task.cancelling` and
|
|
|
|
:meth:`~asyncio.Task.uncancel` methods to :class:`~asyncio.Task`.
|
|
|
|
These are primarily intended for internal use,
|
|
|
|
notably by :class:`~asyncio.TaskGroup`.
|
2022-06-30 13:16:22 -03:00
|
|
|
|
2022-08-13 15:27:44 -03:00
|
|
|
contextlib
|
|
|
|
----------
|
|
|
|
|
|
|
|
Added non parallel-safe :func:`~contextlib.chdir` context manager to change
|
|
|
|
the current working directory and then restore it on exit. Simple wrapper
|
|
|
|
around :func:`~os.chdir`. (Contributed by Filipe Laíns in :issue:`25625`)
|
|
|
|
|
2022-09-13 12:56:08 -03:00
|
|
|
dataclasses
|
|
|
|
-----------
|
|
|
|
|
|
|
|
* Change field default mutability check, allowing only defaults which are
|
|
|
|
:term:`hashable` instead of any object which is not an instance of
|
|
|
|
:class:`dict`, :class:`list` or :class:`set`. (Contributed by Eric V. Smith in
|
|
|
|
:issue:`44674`.)
|
|
|
|
|
2022-05-05 21:31:24 -03:00
|
|
|
datetime
|
|
|
|
--------
|
|
|
|
|
2022-05-10 00:51:28 -03:00
|
|
|
* Add :attr:`datetime.UTC`, a convenience alias for
|
|
|
|
:attr:`datetime.timezone.utc`. (Contributed by Kabir Kwatra in :gh:`91973`.)
|
2022-05-05 21:31:24 -03:00
|
|
|
* :meth:`datetime.date.fromisoformat`, :meth:`datetime.time.fromisoformat` and
|
|
|
|
:meth:`datetime.datetime.fromisoformat` can now be used to parse most ISO 8601
|
|
|
|
formats (barring only those that support fractional hours and minutes).
|
|
|
|
(Contributed by Paul Ganssle in :gh:`80010`.)
|
|
|
|
|
2022-08-03 18:11:20 -03:00
|
|
|
enum
|
|
|
|
----
|
|
|
|
|
|
|
|
* ``EnumMeta`` renamed to ``EnumType`` (``EnumMeta`` kept as alias).
|
|
|
|
|
|
|
|
* ``StrEnum`` added -- enum members are and must be strings.
|
|
|
|
|
|
|
|
* ``ReprEnum`` added -- causes only the ``__repr__`` to be modified, not the
|
|
|
|
``__str__`` nor the ``__format__``.
|
|
|
|
|
|
|
|
* ``FlagBoundary`` added -- controls behavior when invalid values are given to
|
|
|
|
a flag.
|
|
|
|
|
|
|
|
* ``EnumCheck`` added -- used by ``verify`` to ensure various constraints.
|
|
|
|
|
|
|
|
* ``verify`` added -- function to ensure given ``EnumCheck`` constraints.
|
|
|
|
|
|
|
|
* ``member`` added -- decorator to ensure given object is converted to an enum
|
|
|
|
member.
|
|
|
|
|
|
|
|
* ``nonmember`` added -- decorator to ensure given object is not converted to
|
|
|
|
an enum member.
|
|
|
|
|
|
|
|
* ``property`` added -- use instead of ``types.DynamicClassAttribute``.
|
|
|
|
|
|
|
|
* ``global_enum`` added -- enum decorator to adjust ``__repr__`` and ``__str__``
|
|
|
|
to show members in the global context -- see ``re.RegexFlag`` for an example.
|
|
|
|
|
|
|
|
* ``Flag`` enhancements: members support length, iteration, and containment
|
|
|
|
checks.
|
|
|
|
|
|
|
|
* ``Enum``/``Flag`` fixes: members are now defined before ``__init_subclass__``
|
|
|
|
is called; ``dir()`` now includes methods, etc., from mixed-in data types.
|
|
|
|
|
|
|
|
* ``Flag`` fixes: only primary values (power of two) are considered canonical
|
|
|
|
while composite values (3, 6, 10, etc.) are considered aliases; inverted
|
|
|
|
flags are coerced to their positive equivalent.
|
|
|
|
|
|
|
|
* ``IntEnum`` / ``IntFlag`` / ``StrEnum`` fixes: these now inherit from
|
|
|
|
``ReprEnum`` so the ``str()`` output now matches ``format()`` output,
|
|
|
|
which is the data types' (so both ``str(AnIntEnum.ONE)`` and
|
|
|
|
``format(AnIntEnum.ONE)`` is equal to ``'1'``).
|
|
|
|
|
2021-06-07 04:06:33 -03:00
|
|
|
fractions
|
|
|
|
---------
|
|
|
|
|
2021-10-21 19:09:47 -03:00
|
|
|
* Support :PEP:`515`-style initialization of :class:`~fractions.Fraction` from
|
|
|
|
string. (Contributed by Sergey B Kirpichev in :issue:`44258`.)
|
|
|
|
|
|
|
|
* :class:`~fractions.Fraction` now implements an ``__int__`` method, so
|
|
|
|
that an ``isinstance(some_fraction, typing.SupportsInt)`` check passes.
|
|
|
|
(Contributed by Mark Dickinson in :issue:`44547`.)
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2022-04-18 23:50:59 -03:00
|
|
|
functools
|
|
|
|
---------
|
|
|
|
|
|
|
|
* :func:`functools.singledispatch` now supports :data:`types.UnionType`
|
|
|
|
and :data:`typing.Union` as annotations to the dispatch argument.::
|
|
|
|
|
|
|
|
>>> from functools import singledispatch
|
|
|
|
>>> @singledispatch
|
|
|
|
... def fun(arg, verbose=False):
|
|
|
|
... if verbose:
|
|
|
|
... print("Let me just say,", end=" ")
|
|
|
|
... print(arg)
|
|
|
|
...
|
|
|
|
>>> @fun.register
|
|
|
|
... def _(arg: int | float, verbose=False):
|
|
|
|
... if verbose:
|
|
|
|
... print("Strength in numbers, eh?", end=" ")
|
|
|
|
... print(arg)
|
|
|
|
...
|
|
|
|
>>> from typing import Union
|
|
|
|
>>> @fun.register
|
|
|
|
... def _(arg: Union[list, set], verbose=False):
|
|
|
|
... if verbose:
|
|
|
|
... print("Enumerate this:")
|
|
|
|
... for i, elem in enumerate(arg):
|
|
|
|
... print(i, elem)
|
|
|
|
...
|
|
|
|
|
|
|
|
(Contributed by Yurii Karabas in :issue:`46014`.)
|
|
|
|
|
2022-03-26 16:52:24 -03:00
|
|
|
hashlib
|
|
|
|
-------
|
|
|
|
|
|
|
|
* :func:`hashlib.blake2b` and :func:`hashlib.blake2s` now prefer `libb2`_
|
|
|
|
over Python's vendored copy.
|
|
|
|
(Contributed by Christian Heimes in :issue:`47095`.)
|
2021-06-09 20:12:41 -03:00
|
|
|
|
2022-03-26 17:36:08 -03:00
|
|
|
* The internal ``_sha3`` module with SHA3 and SHAKE algorithms now uses
|
|
|
|
*tiny_sha3* instead of the *Keccak Code Package* to reduce code and binary
|
|
|
|
size. The :mod:`hashlib` module prefers optimized SHA3 and SHAKE
|
|
|
|
implementations from OpenSSL. The change affects only installations without
|
|
|
|
OpenSSL support.
|
|
|
|
(Contributed by Christian Heimes in :issue:`47098`.)
|
|
|
|
|
2022-08-13 16:00:58 -03:00
|
|
|
* Add :func:`hashlib.file_digest`, a helper function for efficient hashing
|
|
|
|
of files or file-like objects.
|
|
|
|
(Contributed by Christian Heimes in :gh:`89313`.)
|
|
|
|
|
2022-02-12 20:04:48 -04:00
|
|
|
IDLE and idlelib
|
|
|
|
----------------
|
|
|
|
|
2022-02-12 22:12:21 -04:00
|
|
|
* Apply syntax highlighting to `.pyi` files. (Contributed by Alex
|
2022-02-12 20:04:48 -04:00
|
|
|
Waygood and Terry Jan Reedy in :issue:`45447`.)
|
|
|
|
|
2022-08-03 21:56:05 -03:00
|
|
|
* Include prompts when saving Shell with inputs and outputs.
|
|
|
|
(Contributed by Terry Jan Reedy in :gh:`95191`.)
|
|
|
|
|
2021-12-01 15:23:46 -04:00
|
|
|
inspect
|
|
|
|
-------
|
|
|
|
* Add :func:`inspect.getmembers_static`: return all members without
|
|
|
|
triggering dynamic lookup via the descriptor protocol. (Contributed by
|
|
|
|
Weipeng Hong in :issue:`30533`.)
|
|
|
|
|
2022-02-17 15:45:55 -04:00
|
|
|
* Add :func:`inspect.ismethodwrapper` for checking if the type of an object is a
|
|
|
|
:class:`~types.MethodWrapperType`. (Contributed by Hakan Çelik in :issue:`29418`.)
|
2021-12-01 15:23:46 -04:00
|
|
|
|
2022-04-22 23:16:48 -03:00
|
|
|
* Change the frame-related functions in the :mod:`inspect` module to return a
|
|
|
|
regular object (that is backwards compatible with the old tuple-like
|
|
|
|
interface) that include the extended :pep:`657` position information (end
|
|
|
|
line number, column and end column). The affected functions are:
|
|
|
|
:func:`inspect.getframeinfo`, :func:`inspect.getouterframes`, :func:`inspect.getinnerframes`,
|
|
|
|
:func:`inspect.stack` and :func:`inspect.trace`. (Contributed by Pablo Galindo in
|
2022-07-21 21:35:56 -03:00
|
|
|
:gh:`88116`.)
|
2022-04-22 23:16:48 -03:00
|
|
|
|
2022-04-08 21:54:54 -03:00
|
|
|
locale
|
|
|
|
------
|
|
|
|
|
|
|
|
* Add :func:`locale.getencoding` to get the current locale encoding. It is similar to
|
|
|
|
``locale.getpreferredencoding(False)`` but ignores the
|
|
|
|
:ref:`Python UTF-8 Mode <utf8-mode>`.
|
|
|
|
|
2021-06-10 13:42:09 -03:00
|
|
|
math
|
|
|
|
----
|
2022-03-10 12:47:18 -04:00
|
|
|
|
2021-11-29 14:55:43 -04:00
|
|
|
* Add :func:`math.exp2`: return 2 raised to the power of x.
|
|
|
|
(Contributed by Gideon Mitchell in :issue:`45917`.)
|
2021-06-10 13:42:09 -03:00
|
|
|
|
2021-06-12 06:23:02 -03:00
|
|
|
* Add :func:`math.cbrt`: return the cube root of x.
|
|
|
|
(Contributed by Ajith Ramachandran in :issue:`44357`.)
|
|
|
|
|
|
|
|
* The behaviour of two :func:`math.pow` corner cases was changed, for
|
|
|
|
consistency with the IEEE 754 specification. The operations
|
|
|
|
``math.pow(0.0, -math.inf)`` and ``math.pow(-0.0, -math.inf)`` now return
|
|
|
|
``inf``. Previously they raised :exc:`ValueError`. (Contributed by Mark
|
|
|
|
Dickinson in :issue:`44339`.)
|
2021-06-10 13:42:09 -03:00
|
|
|
|
2022-03-10 12:47:18 -04:00
|
|
|
* The :data:`math.nan` value is now always available.
|
|
|
|
(Contributed by Victor Stinner in :issue:`46917`.)
|
|
|
|
|
2021-06-10 13:42:09 -03:00
|
|
|
|
2021-09-24 12:22:49 -03:00
|
|
|
operator
|
|
|
|
--------
|
|
|
|
|
|
|
|
* A new function ``operator.call`` has been added, such that
|
|
|
|
``operator.call(obj, *args, **kwargs) == obj(*args, **kwargs)``.
|
|
|
|
(Contributed by Antony Lee in :issue:`44019`.)
|
|
|
|
|
|
|
|
|
2021-07-23 11:04:30 -03:00
|
|
|
os
|
|
|
|
--
|
|
|
|
|
2021-09-13 12:40:25 -03:00
|
|
|
* On Windows, :func:`os.urandom` now uses ``BCryptGenRandom()``,
|
|
|
|
instead of ``CryptGenRandom()`` which is deprecated.
|
2021-07-23 11:04:30 -03:00
|
|
|
(Contributed by Dong-hee Na in :issue:`44611`.)
|
|
|
|
|
2022-05-11 01:14:25 -03:00
|
|
|
|
|
|
|
pathlib
|
|
|
|
-------
|
|
|
|
|
|
|
|
* :meth:`~pathlib.Path.glob` and :meth:`~pathlib.Path.rglob` return only
|
|
|
|
directories if *pattern* ends with a pathname components separator:
|
|
|
|
:data:`~os.sep` or :data:`~os.altsep`.
|
|
|
|
(Contributed by Eisuke Kawasima in :issue:`22276` and :issue:`33392`.)
|
|
|
|
|
2022-03-21 13:28:22 -03:00
|
|
|
re
|
|
|
|
--
|
|
|
|
|
2022-03-22 06:44:47 -03:00
|
|
|
* Atomic grouping (``(?>...)``) and possessive quantifiers (``*+``, ``++``,
|
2022-03-21 13:28:22 -03:00
|
|
|
``?+``, ``{m,n}+``) are now supported in regular expressions.
|
|
|
|
(Contributed by Jeffrey C. Jacobs and Serhiy Storchaka in :issue:`433030`.)
|
2021-07-23 11:04:30 -03:00
|
|
|
|
2022-03-09 08:29:33 -04:00
|
|
|
shutil
|
|
|
|
------
|
|
|
|
|
|
|
|
* Add optional parameter *dir_fd* in :func:`shutil.rmtree`.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`46245`.)
|
|
|
|
|
|
|
|
|
2022-01-21 03:44:05 -04:00
|
|
|
socket
|
|
|
|
------
|
|
|
|
|
|
|
|
* Add CAN Socket support for NetBSD.
|
|
|
|
(Contributed by Thomas Klausner in :issue:`30512`.)
|
|
|
|
|
2022-04-18 19:15:41 -03:00
|
|
|
* :meth:`~socket.create_connection` has an option to raise, in case of
|
|
|
|
failure to connect, an :exc:`ExceptionGroup` containing all errors
|
|
|
|
instead of only raising the last error.
|
2022-07-21 21:35:56 -03:00
|
|
|
(Contributed by Irit Katriel in :issue:`29980`.)
|
2022-01-21 03:44:05 -04:00
|
|
|
|
2021-06-24 11:35:57 -03:00
|
|
|
sqlite3
|
|
|
|
-------
|
|
|
|
|
|
|
|
* You can now disable the authorizer by passing :const:`None` to
|
|
|
|
:meth:`~sqlite3.Connection.set_authorizer`.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`44491`.)
|
|
|
|
|
2021-07-29 04:47:56 -03:00
|
|
|
* Collation name :meth:`~sqlite3.Connection.create_collation` can now
|
|
|
|
contain any Unicode character. Collation names with invalid characters
|
|
|
|
now raise :exc:`UnicodeEncodeError` instead of :exc:`sqlite3.ProgrammingError`.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`44688`.)
|
|
|
|
|
2021-11-02 20:49:38 -03:00
|
|
|
* :mod:`sqlite3` exceptions now include the SQLite extended error code as
|
2021-08-30 15:32:21 -03:00
|
|
|
:attr:`~sqlite3.Error.sqlite_errorcode` and the SQLite error name as
|
|
|
|
:attr:`~sqlite3.Error.sqlite_errorname`.
|
|
|
|
(Contributed by Aviv Palivoda, Daniel Shahaf, and Erlend E. Aasland in
|
2021-11-02 20:49:38 -03:00
|
|
|
:issue:`16379` and :issue:`24139`.)
|
|
|
|
|
2021-11-01 19:50:53 -03:00
|
|
|
* Add :meth:`~sqlite3.Connection.setlimit` and
|
|
|
|
:meth:`~sqlite3.Connection.getlimit` to :class:`sqlite3.Connection` for
|
|
|
|
setting and getting SQLite limits by connection basis.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`45243`.)
|
|
|
|
|
2021-11-03 18:01:37 -03:00
|
|
|
* :mod:`sqlite3` now sets :attr:`sqlite3.threadsafety` based on the default
|
|
|
|
threading mode the underlying SQLite library has been compiled with.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`45613`.)
|
|
|
|
|
2021-11-29 11:22:32 -04:00
|
|
|
* :mod:`sqlite3` C callbacks now use unraisable exceptions if callback
|
|
|
|
tracebacks are enabled. Users can now register an
|
|
|
|
:func:`unraisable hook handler <sys.unraisablehook>` to improve their debug
|
|
|
|
experience.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`45828`.)
|
|
|
|
|
2022-01-04 05:36:30 -04:00
|
|
|
* Fetch across rollback no longer raises :exc:`~sqlite3.InterfaceError`.
|
|
|
|
Instead we leave it to the SQLite library to handle these cases.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`44092`.)
|
|
|
|
|
2022-04-05 11:15:25 -03:00
|
|
|
* Add :meth:`~sqlite3.Connection.serialize` and
|
|
|
|
:meth:`~sqlite3.Connection.deserialize` to :class:`sqlite3.Connection` for
|
|
|
|
serializing and deserializing databases.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`41930`.)
|
|
|
|
|
2022-04-11 21:55:59 -03:00
|
|
|
* Add :meth:`~sqlite3.Connection.create_window_function` to
|
|
|
|
:class:`sqlite3.Connection` for creating aggregate window functions.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`34916`.)
|
|
|
|
|
2022-04-14 21:02:56 -03:00
|
|
|
* Add :meth:`~sqlite3.Connection.blobopen` to :class:`sqlite3.Connection`.
|
|
|
|
:class:`sqlite3.Blob` allows incremental I/O operations on blobs.
|
2022-07-21 21:35:56 -03:00
|
|
|
(Contributed by Aviv Palivoda and Erlend E. Aasland in :issue:`24905`.)
|
2022-04-14 21:02:56 -03:00
|
|
|
|
2021-11-01 19:50:53 -03:00
|
|
|
|
2021-11-30 18:37:04 -04:00
|
|
|
sys
|
|
|
|
---
|
|
|
|
|
|
|
|
* :func:`sys.exc_info` now derives the ``type`` and ``traceback`` fields
|
|
|
|
from the ``value`` (the exception instance), so when an exception is
|
|
|
|
modified while it is being handled, the changes are reflected in
|
|
|
|
the results of subsequent calls to :func:`exc_info`.
|
|
|
|
(Contributed by Irit Katriel in :issue:`45711`.)
|
|
|
|
|
2022-01-13 08:35:58 -04:00
|
|
|
* Add :func:`sys.exception` which returns the active exception instance
|
|
|
|
(equivalent to ``sys.exc_info()[1]``).
|
|
|
|
(Contributed by Irit Katriel in :issue:`46328`.)
|
2021-11-30 18:37:04 -04:00
|
|
|
|
2022-05-05 20:34:11 -03:00
|
|
|
* Add the :data:`sys.flags.safe_path <sys.flags>` flag.
|
|
|
|
(Contributed by Victor Stinner in :gh:`57684`.)
|
|
|
|
|
2022-03-18 06:53:29 -03:00
|
|
|
|
|
|
|
sysconfig
|
|
|
|
---------
|
|
|
|
|
2022-07-22 13:51:14 -03:00
|
|
|
* Three new :ref:`installation schemes <installation_paths>`
|
2022-03-18 06:53:29 -03:00
|
|
|
(*posix_venv*, *nt_venv* and *venv*) were added and are used when Python
|
|
|
|
creates new virtual environments or when it is running from a virtual
|
|
|
|
environment.
|
|
|
|
The first two schemes (*posix_venv* and *nt_venv*) are OS-specific
|
|
|
|
for non-Windows and Windows, the *venv* is essentially an alias to one of
|
|
|
|
them according to the OS Python runs on.
|
|
|
|
This is useful for downstream distributors who modify
|
|
|
|
:func:`sysconfig.get_preferred_scheme`.
|
|
|
|
Third party code that creates new virtual environments should use the new
|
|
|
|
*venv* installation scheme to determine the paths, as does :mod:`venv`.
|
|
|
|
(Contributed by Miro Hrončok in :issue:`45413`.)
|
|
|
|
|
|
|
|
|
2021-10-01 04:55:28 -03:00
|
|
|
threading
|
|
|
|
---------
|
|
|
|
|
|
|
|
* On Unix, if the ``sem_clockwait()`` function is available in the C library
|
|
|
|
(glibc 2.30 and newer), the :meth:`threading.Lock.acquire` method now uses
|
|
|
|
the monotonic clock (:data:`time.CLOCK_MONOTONIC`) for the timeout, rather
|
|
|
|
than using the system clock (:data:`time.CLOCK_REALTIME`), to not be affected
|
|
|
|
by system clock changes.
|
2021-10-14 20:49:32 -03:00
|
|
|
(Contributed by Victor Stinner in :issue:`41710`.)
|
2021-10-01 04:55:28 -03:00
|
|
|
|
2021-11-17 20:26:59 -04:00
|
|
|
|
2021-09-13 12:40:25 -03:00
|
|
|
time
|
|
|
|
----
|
|
|
|
|
2021-09-25 09:36:26 -03:00
|
|
|
* On Unix, :func:`time.sleep` now uses the ``clock_nanosleep()`` or
|
2021-09-29 06:09:56 -03:00
|
|
|
``nanosleep()`` function, if available, which has a resolution of 1 nanosecond
|
|
|
|
(10\ :sup:`-9` seconds), rather than using ``select()`` which has a resolution
|
|
|
|
of 1 microsecond (10\ :sup:`-6` seconds).
|
2021-10-17 08:59:22 -03:00
|
|
|
(Contributed by Benjamin Szőke and Victor Stinner in :issue:`21302`.)
|
2021-09-22 11:09:30 -03:00
|
|
|
|
2021-11-17 20:26:59 -04:00
|
|
|
* On Windows 8.1 and newer, :func:`time.sleep` now uses a waitable timer based
|
|
|
|
on `high-resolution timers
|
|
|
|
<https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/high-resolution-timers>`_
|
|
|
|
which has a resolution of 100 nanoseconds (10\ :sup:`-7` seconds). Previously,
|
|
|
|
it had a resolution of 1 millisecond (10\ :sup:`-3` seconds).
|
|
|
|
(Contributed by Benjamin Szőke, Dong-hee Na, Eryk Sun and Victor Stinner in :issue:`21302` and :issue:`45429`.)
|
2021-09-13 12:40:25 -03:00
|
|
|
|
2022-08-18 07:37:41 -03:00
|
|
|
|
|
|
|
traceback
|
|
|
|
---------
|
|
|
|
|
|
|
|
* Add :func:`traceback.StackSummary.format_frame_summary` to allow users
|
|
|
|
to override which frames appear in the traceback, and how they are
|
|
|
|
formatted.
|
|
|
|
(Contributed by Ammar Askar in :issue:`44569`.)
|
|
|
|
|
|
|
|
* Add :func:`traceback.TracebackException.print`, which prints the
|
|
|
|
formatted :exc:`~traceback.TracebackException` instance to a file.
|
|
|
|
(Contributed by Irit Katriel in :issue:`33809`.)
|
|
|
|
|
|
|
|
|
2022-04-30 00:12:45 -03:00
|
|
|
typing
|
|
|
|
------
|
|
|
|
|
|
|
|
For major changes, see :ref:`new-feat-related-type-hints-311`.
|
|
|
|
|
|
|
|
* Add :func:`typing.assert_never` and :class:`typing.Never`.
|
|
|
|
:func:`typing.assert_never` is useful for asking a type checker to confirm
|
|
|
|
that a line of code is not reachable. At runtime, it raises an
|
|
|
|
:exc:`AssertionError`.
|
|
|
|
(Contributed by Jelle Zijlstra in :gh:`90633`.)
|
|
|
|
|
|
|
|
* Add :func:`typing.reveal_type`. This is useful for asking a type checker
|
|
|
|
what type it has inferred for a given expression. At runtime it prints
|
|
|
|
the type of the received value.
|
|
|
|
(Contributed by Jelle Zijlstra in :gh:`90572`.)
|
|
|
|
|
|
|
|
* Add :func:`typing.assert_type`. This is useful for asking a type checker
|
|
|
|
to confirm that the type it has inferred for a given expression matches
|
|
|
|
the given type. At runtime it simply returns the received value.
|
|
|
|
(Contributed by Jelle Zijlstra in :gh:`90638`.)
|
|
|
|
|
2022-05-19 11:07:54 -03:00
|
|
|
* :data:`typing.TypedDict` types can now be generic. (Contributed by
|
2022-06-07 01:05:00 -03:00
|
|
|
Samodya Abeysiriwardane in :gh:`89026`.)
|
2022-05-19 11:07:54 -03:00
|
|
|
|
|
|
|
* :class:`~typing.NamedTuple` types can now be generic.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`43923`.)
|
|
|
|
|
2022-04-30 00:12:45 -03:00
|
|
|
* Allow subclassing of :class:`typing.Any`. This is useful for avoiding
|
|
|
|
type checker errors related to highly dynamic class, such as mocks.
|
|
|
|
(Contributed by Shantanu Jain in :gh:`91154`.)
|
|
|
|
|
|
|
|
* The :func:`typing.final` decorator now sets the ``__final__`` attributed on
|
|
|
|
the decorated object.
|
|
|
|
(Contributed by Jelle Zijlstra in :gh:`90500`.)
|
|
|
|
|
|
|
|
* The :func:`typing.get_overloads` function can be used for introspecting
|
|
|
|
the overloads of a function. :func:`typing.clear_overloads` can be used
|
|
|
|
to clear all registered overloads of a function.
|
|
|
|
(Contributed by Jelle Zijlstra in :gh:`89263`.)
|
2021-11-16 09:41:20 -04:00
|
|
|
|
2022-05-19 11:07:54 -03:00
|
|
|
* The :meth:`__init__` method of :class:`~typing.Protocol` subclasses
|
|
|
|
is now preserved. (Contributed by Adrian Garcia Badarasco in :gh:`88970`.)
|
2022-05-03 10:21:42 -03:00
|
|
|
|
2022-05-19 11:07:54 -03:00
|
|
|
* The representation of empty tuple types (``Tuple[()]``) is simplified.
|
|
|
|
This affects introspection, e.g. ``get_args(Tuple[()])`` now evaluates
|
|
|
|
to ``()`` instead of ``((),)``.
|
|
|
|
(Contributed by Serhiy Storchaka in :gh:`91137`.)
|
|
|
|
|
|
|
|
* Loosen runtime requirements for type annotations by removing the callable
|
|
|
|
check in the private ``typing._type_check`` function. (Contributed by
|
|
|
|
Gregory Beauregard in :gh:`90802`.)
|
|
|
|
|
|
|
|
* :func:`typing.get_type_hints` now supports evaluating strings as forward
|
|
|
|
references in :ref:`PEP 585 generic aliases <types-genericalias>`.
|
|
|
|
(Contributed by Niklas Rosenstein in :gh:`85542`.)
|
|
|
|
|
|
|
|
* :func:`typing.get_type_hints` no longer adds :data:`~typing.Optional`
|
|
|
|
to parameters with ``None`` as a default. (Contributed by Nikita Sobolev
|
|
|
|
in :gh:`90353`.)
|
|
|
|
|
|
|
|
* :func:`typing.get_type_hints` now supports evaluating bare stringified
|
|
|
|
:data:`~typing.ClassVar` annotations. (Contributed by Gregory Beauregard
|
|
|
|
in :gh:`90711`.)
|
|
|
|
|
|
|
|
* :func:`typing.no_type_check` no longer modifies external classes and functions.
|
|
|
|
It also now correctly marks classmethods as not to be type checked. (Contributed
|
|
|
|
by Nikita Sobolev in :gh:`90729`.)
|
2022-05-02 19:41:23 -03:00
|
|
|
|
|
|
|
|
2022-05-06 07:50:38 -03:00
|
|
|
tkinter
|
|
|
|
-------
|
|
|
|
|
|
|
|
* Added method ``info_patchlevel()`` which returns the exact version of
|
|
|
|
the Tcl library as a named tuple similar to :data:`sys.version_info`.
|
2022-05-06 09:32:10 -03:00
|
|
|
(Contributed by Serhiy Storchaka in :gh:`91827`.)
|
2022-05-06 07:50:38 -03:00
|
|
|
|
|
|
|
|
2021-09-14 15:00:38 -03:00
|
|
|
unicodedata
|
|
|
|
-----------
|
|
|
|
|
2022-07-21 21:35:56 -03:00
|
|
|
* The Unicode database has been updated to version 14.0.0. (Contributed by Benjamin Peterson in :issue:`45190`).
|
2021-09-14 15:00:38 -03:00
|
|
|
|
2021-06-24 11:35:57 -03:00
|
|
|
|
2022-05-08 11:49:09 -03:00
|
|
|
unittest
|
|
|
|
--------
|
|
|
|
|
|
|
|
* Added methods :meth:`~unittest.TestCase.enterContext` and
|
|
|
|
:meth:`~unittest.TestCase.enterClassContext` of class
|
|
|
|
:class:`~unittest.TestCase`, method
|
|
|
|
:meth:`~unittest.IsolatedAsyncioTestCase.enterAsyncContext` of
|
|
|
|
class :class:`~unittest.IsolatedAsyncioTestCase` and function
|
|
|
|
:func:`unittest.enterModuleContext`.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`45046`.)
|
|
|
|
|
|
|
|
|
2022-03-18 06:53:29 -03:00
|
|
|
venv
|
|
|
|
----
|
|
|
|
|
|
|
|
* When new Python virtual environments are created, the *venv*
|
|
|
|
:ref:`sysconfig installation scheme <installation_paths>` is used
|
|
|
|
to determine the paths inside the environment.
|
|
|
|
When Python runs in a virtual environment, the same installation scheme
|
|
|
|
is the default.
|
|
|
|
That means that downstream distributors can change the default sysconfig install
|
|
|
|
scheme without changing behavior of virtual environments.
|
|
|
|
Third party code that also creates new virtual environments should do the same.
|
|
|
|
(Contributed by Miro Hrončok in :issue:`45413`.)
|
|
|
|
|
2022-04-23 21:55:22 -03:00
|
|
|
warnings
|
|
|
|
--------
|
|
|
|
|
|
|
|
* :func:`warnings.catch_warnings` now accepts arguments for :func:`warnings.simplefilter`,
|
|
|
|
providing a more concise way to locally ignore warnings or convert them to errors.
|
|
|
|
(Contributed by Zac Hatfield-Dodds in :issue:`47074`.)
|
|
|
|
|
2022-03-22 06:52:55 -03:00
|
|
|
zipfile
|
|
|
|
-------
|
|
|
|
|
|
|
|
* Added support for specifying member name encoding for reading
|
|
|
|
metadata in the zipfile's directory and file headers.
|
|
|
|
(Contributed by Stephen J. Turnbull and Serhiy Storchaka in :issue:`28080`.)
|
2022-03-18 06:53:29 -03:00
|
|
|
|
2021-12-08 18:28:51 -04:00
|
|
|
fcntl
|
|
|
|
-----
|
|
|
|
|
2021-12-09 10:24:32 -04:00
|
|
|
* On FreeBSD, the :attr:`F_DUP2FD` and :attr:`F_DUP2FD_CLOEXEC` flags respectively
|
2021-12-08 18:28:51 -04:00
|
|
|
are supported, the former equals to ``dup2`` usage while the latter set
|
|
|
|
the ``FD_CLOEXEC`` flag in addition.
|
|
|
|
|
|
|
|
|
2021-09-23 06:37:39 -03:00
|
|
|
Optimizations
|
|
|
|
=============
|
|
|
|
|
|
|
|
* Compiler now optimizes simple C-style formatting with literal format
|
|
|
|
containing only format codes ``%s``, ``%r`` and ``%a`` and makes it as
|
|
|
|
fast as corresponding f-string expression.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`28307`.)
|
|
|
|
|
|
|
|
* "Zero-cost" exceptions are implemented. The cost of ``try`` statements is
|
|
|
|
almost eliminated when no exception is raised.
|
|
|
|
(Contributed by Mark Shannon in :issue:`40222`.)
|
|
|
|
|
|
|
|
* Pure ASCII strings are now normalized in constant time by :func:`unicodedata.normalize`.
|
|
|
|
(Contributed by Dong-hee Na in :issue:`44987`.)
|
|
|
|
|
2021-12-05 16:26:10 -04:00
|
|
|
* :mod:`math` functions :func:`~math.comb` and :func:`~math.perm` are now up
|
|
|
|
to 10 times or more faster for large arguments (the speed up is larger for
|
|
|
|
larger *k*).
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`37295`.)
|
|
|
|
|
2022-03-01 19:09:28 -04:00
|
|
|
* Dict don't store hash value when all inserted keys are Unicode objects.
|
|
|
|
This reduces dict size. For example, ``sys.getsizeof(dict.fromkeys("abcdefg"))``
|
|
|
|
becomes 272 bytes from 352 bytes on 64bit platform.
|
|
|
|
(Contributed by Inada Naoki in :issue:`46845`.)
|
|
|
|
|
2022-04-15 13:26:44 -03:00
|
|
|
* :mod:`re`'s regular expression matching engine has been partially refactored,
|
|
|
|
and now uses computed gotos (or "threaded code") on supported platforms. As a
|
|
|
|
result, Python 3.11 executes the `pyperformance regular expression benchmarks
|
|
|
|
<https://pyperformance.readthedocs.io/benchmarks.html#regex-dna>`_ up to 10%
|
|
|
|
faster than Python 3.10.
|
|
|
|
|
2021-09-23 06:37:39 -03:00
|
|
|
|
2022-04-06 08:38:25 -03:00
|
|
|
Faster CPython
|
|
|
|
==============
|
|
|
|
|
2022-07-28 13:22:24 -03:00
|
|
|
CPython 3.11 is on average `25% faster <https://github.com/faster-cpython/ideas#published-results>`_
|
2022-04-06 08:38:25 -03:00
|
|
|
than CPython 3.10 when measured with the
|
|
|
|
`pyperformance <https://github.com/python/pyperformance>`_ benchmark suite,
|
|
|
|
and compiled with GCC on Ubuntu Linux. Depending on your workload, the speedup
|
|
|
|
could be up to 10-60% faster.
|
|
|
|
|
|
|
|
This project focuses on two major areas in Python: faster startup and faster
|
|
|
|
runtime. Other optimizations not under this project are listed in `Optimizations`_.
|
|
|
|
|
|
|
|
Faster Startup
|
|
|
|
--------------
|
|
|
|
|
|
|
|
Frozen imports / Static code objects
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Python caches bytecode in the :ref:`__pycache__<tut-pycache>` directory to
|
|
|
|
speed up module loading.
|
|
|
|
|
|
|
|
Previously in 3.10, Python module execution looked like this:
|
|
|
|
|
|
|
|
.. code-block:: text
|
|
|
|
|
|
|
|
Read __pycache__ -> Unmarshal -> Heap allocated code object -> Evaluate
|
|
|
|
|
|
|
|
In Python 3.11, the core modules essential for Python startup are "frozen".
|
|
|
|
This means that their code objects (and bytecode) are statically allocated
|
|
|
|
by the interpreter. This reduces the steps in module execution process to this:
|
|
|
|
|
|
|
|
.. code-block:: text
|
|
|
|
|
|
|
|
Statically allocated code object -> Evaluate
|
|
|
|
|
|
|
|
Interpreter startup is now 10-15% faster in Python 3.11. This has a big
|
|
|
|
impact for short-running programs using Python.
|
|
|
|
|
|
|
|
(Contributed by Eric Snow, Guido van Rossum and Kumar Aditya in numerous issues.)
|
|
|
|
|
|
|
|
|
|
|
|
Faster Runtime
|
|
|
|
--------------
|
|
|
|
|
|
|
|
Cheaper, lazy Python frames
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Python frames are created whenever Python calls a Python function. This frame
|
|
|
|
holds execution information. The following are new frame optimizations:
|
|
|
|
|
|
|
|
- Streamlined the frame creation process.
|
|
|
|
- Avoided memory allocation by generously re-using frame space on the C stack.
|
|
|
|
- Streamlined the internal frame struct to contain only essential information.
|
|
|
|
Frames previously held extra debugging and memory management information.
|
|
|
|
|
2022-05-09 10:45:13 -03:00
|
|
|
Old-style frame objects are now created only when requested by debuggers or
|
|
|
|
by Python introspection functions such as ``sys._getframe`` or
|
|
|
|
``inspect.currentframe``. For most user code, no frame objects are
|
|
|
|
created at all. As a result, nearly all Python functions calls have sped
|
|
|
|
up significantly. We measured a 3-7% speedup in pyperformance.
|
2022-04-06 08:38:25 -03:00
|
|
|
|
|
|
|
(Contributed by Mark Shannon in :issue:`44590`.)
|
|
|
|
|
|
|
|
.. _inline-calls:
|
|
|
|
|
|
|
|
Inlined Python function calls
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
During a Python function call, Python will call an evaluating C function to
|
|
|
|
interpret that function's code. This effectively limits pure Python recursion to
|
|
|
|
what's safe for the C stack.
|
|
|
|
|
|
|
|
In 3.11, when CPython detects Python code calling another Python function,
|
|
|
|
it sets up a new frame, and "jumps" to the new code inside the new frame. This
|
|
|
|
avoids calling the C interpreting function altogether.
|
|
|
|
|
|
|
|
Most Python function calls now consume no C stack space. This speeds up
|
|
|
|
most of such calls. In simple recursive functions like fibonacci or
|
|
|
|
factorial, a 1.7x speedup was observed. This also means recursive functions
|
|
|
|
can recurse significantly deeper (if the user increases the recursion limit).
|
|
|
|
We measured a 1-3% improvement in pyperformance.
|
|
|
|
|
|
|
|
(Contributed by Pablo Galindo and Mark Shannon in :issue:`45256`.)
|
|
|
|
|
|
|
|
PEP 659: Specializing Adaptive Interpreter
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
:pep:`659` is one of the key parts of the faster CPython project. The general
|
|
|
|
idea is that while Python is a dynamic language, most code has regions where
|
|
|
|
objects and types rarely change. This concept is known as *type stability*.
|
|
|
|
|
|
|
|
At runtime, Python will try to look for common patterns and type stability
|
|
|
|
in the executing code. Python will then replace the current operation with a
|
|
|
|
more specialized one. This specialized operation uses fast paths available only
|
|
|
|
to those use cases/types, which generally outperform their generic
|
|
|
|
counterparts. This also brings in another concept called *inline caching*, where
|
|
|
|
Python caches the results of expensive operations directly in the bytecode.
|
|
|
|
|
|
|
|
The specializer will also combine certain common instruction pairs into one
|
|
|
|
superinstruction. This reduces the overhead during execution.
|
|
|
|
|
|
|
|
Python will only specialize
|
|
|
|
when it sees code that is "hot" (executed multiple times). This prevents Python
|
|
|
|
from wasting time for run-once code. Python can also de-specialize when code is
|
|
|
|
too dynamic or when the use changes. Specialization is attempted periodically,
|
|
|
|
and specialization attempts are not too expensive. This allows specialization
|
|
|
|
to adapt to new circumstances.
|
|
|
|
|
|
|
|
(PEP written by Mark Shannon, with ideas inspired by Stefan Brunthaler.
|
2022-05-08 12:05:30 -03:00
|
|
|
See :pep:`659` for more information. Implementation by Mark Shannon and Brandt
|
|
|
|
Bucher, with additional help from Irit Katriel and Dennis Sweeney.)
|
2022-04-06 08:38:25 -03:00
|
|
|
|
|
|
|
..
|
|
|
|
If I missed out anyone, please add them.
|
|
|
|
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Operation | Form | Specialization | Operation speedup | Contributor(s) |
|
|
|
|
| | | | (up to) | |
|
|
|
|
+===============+====================+=======================================================+===================+===================+
|
|
|
|
| Binary | ``x+x; x*x; x-x;`` | Binary add, multiply and subtract for common types | 10% | Mark Shannon, |
|
|
|
|
| operations | | such as ``int``, ``float``, and ``str`` take custom | | Dong-hee Na, |
|
|
|
|
| | | fast paths for their underlying types. | | Brandt Bucher, |
|
|
|
|
| | | | | Dennis Sweeney |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Subscript | ``a[i]`` | Subscripting container types such as ``list``, | 10-25% | Irit Katriel, |
|
|
|
|
| | | ``tuple`` and ``dict`` directly index the underlying | | Mark Shannon |
|
|
|
|
| | | data structures. | | |
|
|
|
|
| | | | | |
|
|
|
|
| | | Subscripting custom ``__getitem__`` | | |
|
|
|
|
| | | is also inlined similar to :ref:`inline-calls`. | | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Store | ``a[i] = z`` | Similar to subscripting specialization above. | 10-25% | Dennis Sweeney |
|
|
|
|
| subscript | | | | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Calls | ``f(arg)`` | Calls to common builtin (C) functions and types such | 20% | Mark Shannon, |
|
|
|
|
| | ``C(arg)`` | as ``len`` and ``str`` directly call their underlying | | Ken Jin |
|
|
|
|
| | | C version. This avoids going through the internal | | |
|
|
|
|
| | | calling convention. | | |
|
|
|
|
| | | | | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Load | ``print`` | The object's index in the globals/builtins namespace | [1]_ | Mark Shannon |
|
|
|
|
| global | ``len`` | is cached. Loading globals and builtins require | | |
|
|
|
|
| variable | | zero namespace lookups. | | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Load | ``o.attr`` | Similar to loading global variables. The attribute's | [2]_ | Mark Shannon |
|
|
|
|
| attribute | | index inside the class/object's namespace is cached. | | |
|
|
|
|
| | | In most cases, attribute loading will require zero | | |
|
|
|
|
| | | namespace lookups. | | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Load | ``o.meth()`` | The actual address of the method is cached. Method | 10-20% | Ken Jin, |
|
|
|
|
| methods for | | loading now has no namespace lookups -- even for | | Mark Shannon |
|
|
|
|
| call | | classes with long inheritance chains. | | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Store | ``o.attr = z`` | Similar to load attribute optimization. | 2% | Mark Shannon |
|
|
|
|
| attribute | | | in pyperformance | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
| Unpack | ``*seq`` | Specialized for common containers such as ``list`` | 8% | Brandt Bucher |
|
|
|
|
| Sequence | | and ``tuple``. Avoids internal calling convention. | | |
|
|
|
|
+---------------+--------------------+-------------------------------------------------------+-------------------+-------------------+
|
|
|
|
|
|
|
|
.. [1] A similar optimization already existed since Python 3.8. 3.11
|
|
|
|
specializes for more forms and reduces some overhead.
|
|
|
|
|
|
|
|
.. [2] A similar optimization already existed since Python 3.10.
|
|
|
|
3.11 specializes for more forms. Furthermore, all attribute loads should
|
|
|
|
be sped up by :issue:`45947`.
|
|
|
|
|
|
|
|
|
|
|
|
Misc
|
|
|
|
----
|
|
|
|
|
|
|
|
* Objects now require less memory due to lazily created object namespaces. Their
|
|
|
|
namespace dictionaries now also share keys more freely.
|
|
|
|
(Contributed Mark Shannon in :issue:`45340` and :issue:`40116`.)
|
|
|
|
|
|
|
|
* A more concise representation of exceptions in the interpreter reduced the
|
|
|
|
time required for catching an exception by about 10%.
|
|
|
|
(Contributed by Irit Katriel in :issue:`45711`.)
|
|
|
|
|
|
|
|
FAQ
|
|
|
|
---
|
|
|
|
|
|
|
|
| Q: How should I write my code to utilize these speedups?
|
|
|
|
|
|
|
|
|
| A: You don't have to change your code. Write Pythonic code that follows common
|
|
|
|
best practices. The Faster CPython project optimizes for common code
|
|
|
|
patterns we observe.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| Q: Will CPython 3.11 use more memory?
|
|
|
|
|
|
|
|
|
| A: Maybe not. We don't expect memory use to exceed 20% more than 3.10.
|
|
|
|
This is offset by memory optimizations for frame objects and object
|
|
|
|
dictionaries as mentioned above.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| Q: I don't see any speedups in my workload. Why?
|
|
|
|
|
|
|
|
|
| A: Certain code won't have noticeable benefits. If your code spends most of
|
|
|
|
its time on I/O operations, or already does most of its
|
|
|
|
computation in a C extension library like numpy, there won't be significant
|
|
|
|
speedup. This project currently benefits pure-Python workloads the most.
|
|
|
|
|
|
|
|
|
| Furthermore, the pyperformance figures are a geometric mean. Even within the
|
|
|
|
pyperformance benchmarks, certain benchmarks have slowed down slightly, while
|
|
|
|
others have sped up by nearly 2x!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| Q: Is there a JIT compiler?
|
|
|
|
|
|
|
|
|
| A: No. We're still exploring other optimizations.
|
|
|
|
|
|
|
|
|
|
|
|
About
|
|
|
|
-----
|
|
|
|
|
|
|
|
Faster CPython explores optimizations for :term:`CPython`. The main team is
|
|
|
|
funded by Microsoft to work on this full-time. Pablo Galindo Salgado is also
|
|
|
|
funded by Bloomberg LP to work on the project part-time. Finally, many
|
|
|
|
contributors are volunteers from the community.
|
|
|
|
|
|
|
|
|
2021-09-23 06:37:39 -03:00
|
|
|
CPython bytecode changes
|
|
|
|
========================
|
|
|
|
|
2022-08-05 02:45:05 -03:00
|
|
|
* The bytecode now contains inline cache entries, which take the form of
|
|
|
|
:opcode:`CACHE` instructions. Many opcodes expect to be followed by an exact
|
|
|
|
number of caches, and instruct the interpreter to skip over them at runtime.
|
|
|
|
Populated caches can look like arbitrary instructions, so great care should be
|
|
|
|
taken when reading or modifying raw, adaptive bytecode containing quickened
|
|
|
|
data.
|
|
|
|
|
2021-11-11 02:56:22 -04:00
|
|
|
* Replaced all numeric ``BINARY_*`` and ``INPLACE_*`` instructions with a single
|
|
|
|
:opcode:`BINARY_OP` implementation.
|
|
|
|
|
2021-12-14 19:40:44 -04:00
|
|
|
* Replaced the three call instructions: :opcode:`CALL_FUNCTION`,
|
|
|
|
:opcode:`CALL_FUNCTION_KW` and :opcode:`CALL_METHOD` with
|
2022-02-18 13:19:08 -04:00
|
|
|
:opcode:`PUSH_NULL`, :opcode:`PRECALL`, :opcode:`CALL`,
|
2022-01-28 08:42:30 -04:00
|
|
|
and :opcode:`KW_NAMES`.
|
2021-12-14 19:40:44 -04:00
|
|
|
This decouples the argument shifting for methods from the handling of
|
|
|
|
keyword arguments and allows better specialization of calls.
|
2021-09-23 06:37:39 -03:00
|
|
|
|
2022-01-04 15:38:32 -04:00
|
|
|
* Removed ``COPY_DICT_WITHOUT_KEYS`` and ``GEN_START``.
|
2021-10-27 06:45:35 -03:00
|
|
|
|
|
|
|
* :opcode:`MATCH_CLASS` and :opcode:`MATCH_KEYS` no longer push an additional
|
|
|
|
boolean value indicating whether the match succeeded or failed. Instead, they
|
|
|
|
indicate failure with :const:`None` (where a tuple of extracted values would
|
|
|
|
otherwise be).
|
|
|
|
|
2022-01-26 16:47:45 -04:00
|
|
|
* Replace several stack manipulation instructions (``DUP_TOP``, ``DUP_TOP_TWO``,
|
|
|
|
``ROT_TWO``, ``ROT_THREE``, ``ROT_FOUR``, and ``ROT_N``) with new
|
|
|
|
:opcode:`COPY` and :opcode:`SWAP` instructions.
|
2021-10-27 06:45:35 -03:00
|
|
|
|
2022-04-01 09:59:38 -03:00
|
|
|
* Replaced :opcode:`JUMP_IF_NOT_EXC_MATCH` by :opcode:`CHECK_EXC_MATCH` which
|
|
|
|
performs the check but does not jump.
|
2021-11-12 09:21:45 -04:00
|
|
|
|
2022-04-05 08:06:22 -03:00
|
|
|
* Replaced :opcode:`JUMP_IF_NOT_EG_MATCH` by :opcode:`CHECK_EG_MATCH` which
|
|
|
|
performs the check but does not jump.
|
|
|
|
|
2022-03-31 10:14:15 -03:00
|
|
|
* Replaced :opcode:`JUMP_ABSOLUTE` by the relative :opcode:`JUMP_BACKWARD`.
|
2021-09-23 06:37:39 -03:00
|
|
|
|
2022-04-11 06:40:24 -03:00
|
|
|
* Added :opcode:`JUMP_BACKWARD_NO_INTERRUPT`, which is used in certain loops where it
|
|
|
|
is undesirable to handle interrupts.
|
|
|
|
|
|
|
|
* Replaced :opcode:`POP_JUMP_IF_TRUE` and :opcode:`POP_JUMP_IF_FALSE` by
|
|
|
|
the relative :opcode:`POP_JUMP_FORWARD_IF_TRUE`, :opcode:`POP_JUMP_BACKWARD_IF_TRUE`,
|
|
|
|
:opcode:`POP_JUMP_FORWARD_IF_FALSE` and :opcode:`POP_JUMP_BACKWARD_IF_FALSE`.
|
|
|
|
|
|
|
|
* Added :opcode:`POP_JUMP_FORWARD_IF_NOT_NONE`, :opcode:`POP_JUMP_BACKWARD_IF_NOT_NONE`,
|
|
|
|
:opcode:`POP_JUMP_FORWARD_IF_NONE` and :opcode:`POP_JUMP_BACKWARD_IF_NONE`
|
|
|
|
opcodes to speed up conditional jumps.
|
|
|
|
|
2022-04-15 16:19:24 -03:00
|
|
|
* :opcode:`JUMP_IF_TRUE_OR_POP` and :opcode:`JUMP_IF_FALSE_OR_POP` are now
|
|
|
|
relative rather than absolute.
|
|
|
|
|
2022-08-10 07:50:21 -03:00
|
|
|
* :opcode:`RESUME` has been added. It is a no-op. Performs internal tracing,
|
|
|
|
debugging and optimization checks.
|
2022-04-05 08:49:08 -03:00
|
|
|
|
2021-09-23 06:37:39 -03:00
|
|
|
Deprecated
|
|
|
|
==========
|
|
|
|
|
2022-05-06 04:57:53 -03:00
|
|
|
* Chaining :class:`classmethod` descriptors (introduced in :issue:`19072`)
|
|
|
|
is now deprecated. It can no longer be used to wrap other descriptors
|
|
|
|
such as :class:`property`. The core design of this feature was flawed
|
|
|
|
and caused a number of downstream problems. To "pass-through" a
|
|
|
|
:class:`classmethod`, consider using the ``__wrapped__`` attribute
|
|
|
|
that was added in Python 3.10.
|
|
|
|
(Contributed by Raymond Hettinger in :gh:`89519`.)
|
|
|
|
|
2022-05-16 07:42:58 -03:00
|
|
|
* Octal escapes in string and bytes literals with value larger than ``0o377`` now
|
|
|
|
produce :exc:`DeprecationWarning`.
|
2022-04-30 07:16:27 -03:00
|
|
|
In a future Python version they will be a :exc:`SyntaxWarning` and
|
|
|
|
eventually a :exc:`SyntaxError`.
|
2022-04-30 16:53:59 -03:00
|
|
|
(Contributed by Serhiy Storchaka in :gh:`81548`.)
|
2022-04-30 07:16:27 -03:00
|
|
|
|
2021-10-19 15:28:27 -03:00
|
|
|
* The :mod:`lib2to3` package and ``2to3`` tool are now deprecated and may not
|
|
|
|
be able to parse Python 3.10 or newer. See the :pep:`617` (New PEG parser for
|
|
|
|
CPython). (Contributed by Victor Stinner in :issue:`40360`.)
|
2021-09-23 06:37:39 -03:00
|
|
|
|
2022-04-02 05:35:13 -03:00
|
|
|
* Undocumented modules ``sre_compile``, ``sre_constants`` and ``sre_parse``
|
|
|
|
are now deprecated.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`47152`.)
|
|
|
|
|
2021-09-23 06:37:39 -03:00
|
|
|
* :class:`webbrowser.MacOSX` is deprecated and will be removed in Python 3.13.
|
|
|
|
It is untested and undocumented and also not used by webbrowser itself.
|
|
|
|
(Contributed by Dong-hee Na in :issue:`42255`.)
|
|
|
|
|
|
|
|
* The behavior of returning a value from a :class:`~unittest.TestCase` and
|
|
|
|
:class:`~unittest.IsolatedAsyncioTestCase` test methods (other than the
|
|
|
|
default ``None`` value), is now deprecated.
|
|
|
|
|
|
|
|
* Deprecated the following :mod:`unittest` functions, scheduled for removal in
|
|
|
|
Python 3.13:
|
|
|
|
|
|
|
|
* :func:`unittest.findTestCases`
|
|
|
|
* :func:`unittest.makeSuite`
|
|
|
|
* :func:`unittest.getTestCaseNames`
|
|
|
|
|
|
|
|
Use :class:`~unittest.TestLoader` method instead:
|
|
|
|
|
|
|
|
* :meth:`unittest.TestLoader.loadTestsFromModule`
|
|
|
|
* :meth:`unittest.TestLoader.loadTestsFromTestCase`
|
|
|
|
* :meth:`unittest.TestLoader.getTestCaseNames`
|
|
|
|
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`5846`.)
|
|
|
|
|
2021-11-18 11:02:48 -04:00
|
|
|
* The :meth:`turtle.RawTurtle.settiltangle` is deprecated since Python 3.1,
|
|
|
|
it now emits a deprecation warning and will be removed in Python 3.13. Use
|
|
|
|
:meth:`turtle.RawTurtle.tiltangle` instead (it was earlier incorrectly marked
|
|
|
|
as deprecated, its docstring is now corrected).
|
|
|
|
(Contributed by Hugo van Kemenade in :issue:`45837`.)
|
2021-09-23 06:37:39 -03:00
|
|
|
|
2022-02-03 05:43:25 -04:00
|
|
|
* The delegation of :func:`int` to :meth:`__trunc__` is now deprecated. Calling
|
|
|
|
``int(a)`` when ``type(a)`` implements :meth:`__trunc__` but not
|
|
|
|
:meth:`__int__` or :meth:`__index__` now raises a :exc:`DeprecationWarning`.
|
|
|
|
(Contributed by Zackery Spytz in :issue:`44977`.)
|
|
|
|
|
2022-02-02 12:59:39 -04:00
|
|
|
* The following have been deprecated in :mod:`configparser` since Python 3.2.
|
|
|
|
Their deprecation warnings have now been updated to note they will removed in
|
|
|
|
Python 3.12:
|
|
|
|
|
|
|
|
* the :class:`configparser.SafeConfigParser` class
|
|
|
|
* the :attr:`configparser.ParsingError.filename` property
|
2022-05-11 03:18:45 -03:00
|
|
|
* the :meth:`configparser.RawConfigParser.readfp` method
|
2022-02-02 12:59:39 -04:00
|
|
|
|
|
|
|
(Contributed by Hugo van Kemenade in :issue:`45173`.)
|
|
|
|
|
2022-04-05 12:15:11 -03:00
|
|
|
* :class:`configparser.LegacyInterpolation` has been deprecated in the docstring
|
|
|
|
since Python 3.2. It now emits a :exc:`DeprecationWarning` and will be removed
|
|
|
|
in Python 3.13. Use :class:`configparser.BasicInterpolation` or
|
2022-04-06 08:40:37 -03:00
|
|
|
:class:`configparser.ExtendedInterpolation` instead.
|
2022-04-05 12:15:11 -03:00
|
|
|
(Contributed by Hugo van Kemenade in :issue:`46607`.)
|
|
|
|
|
2022-02-22 17:06:43 -04:00
|
|
|
* The :func:`locale.getdefaultlocale` function is deprecated and will be
|
|
|
|
removed in Python 3.13. Use :func:`locale.setlocale`,
|
|
|
|
:func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>` and
|
|
|
|
:func:`locale.getlocale` functions instead.
|
2022-05-25 17:04:06 -03:00
|
|
|
(Contributed by Victor Stinner in :gh:`90817`.)
|
|
|
|
|
|
|
|
* The :func:`locale.resetlocale` function is deprecated and will be
|
|
|
|
removed in Python 3.13. Use ``locale.setlocale(locale.LC_ALL, "")`` instead.
|
|
|
|
(Contributed by Victor Stinner in :gh:`90817`.)
|
2022-02-22 17:06:43 -04:00
|
|
|
|
2022-03-18 16:45:37 -03:00
|
|
|
* The :mod:`asynchat`, :mod:`asyncore` and :mod:`smtpd` modules have been
|
|
|
|
deprecated since at least Python 3.6. Their documentation and deprecation
|
|
|
|
warnings have now been updated to note they will removed in Python 3.12
|
|
|
|
(:pep:`594`).
|
|
|
|
(Contributed by Hugo van Kemenade in :issue:`47022`.)
|
2022-02-03 05:43:25 -04:00
|
|
|
|
2022-04-05 16:05:48 -03:00
|
|
|
* :pep:`594` led to the deprecations of the following modules which are
|
|
|
|
slated for removal in Python 3.13:
|
|
|
|
|
|
|
|
* :mod:`aifc`
|
2022-04-07 16:27:35 -03:00
|
|
|
* :mod:`audioop`
|
2022-04-08 21:15:35 -03:00
|
|
|
* :mod:`cgi`
|
|
|
|
* :mod:`cgitb`
|
2022-04-11 19:02:41 -03:00
|
|
|
* :mod:`chunk`
|
2022-04-11 21:02:19 -03:00
|
|
|
* :mod:`crypt`
|
2022-04-13 14:47:41 -03:00
|
|
|
* :mod:`imghdr`
|
2022-04-26 17:43:50 -03:00
|
|
|
* :mod:`mailcap`
|
2022-04-14 16:50:11 -03:00
|
|
|
* :mod:`msilib`
|
2022-04-16 17:17:30 -03:00
|
|
|
* :mod:`nis`
|
2022-04-15 16:32:56 -03:00
|
|
|
* :mod:`nntplib`
|
2022-04-17 19:02:36 -03:00
|
|
|
* :mod:`ossaudiodev`
|
2022-04-21 23:28:34 -03:00
|
|
|
* :mod:`pipes`
|
2022-04-22 19:48:03 -03:00
|
|
|
* :mod:`sndhdr`
|
2022-04-23 18:48:17 -03:00
|
|
|
* :mod:`spwd`
|
2022-04-25 20:26:43 -03:00
|
|
|
* :mod:`sunau`
|
2022-04-26 14:45:08 -03:00
|
|
|
* :mod:`telnetlib`
|
2022-04-28 00:26:33 -03:00
|
|
|
* :mod:`uu`
|
2022-04-29 22:22:10 -03:00
|
|
|
* :mod:`xdrlib`
|
2022-04-05 16:05:48 -03:00
|
|
|
|
2022-04-26 17:43:50 -03:00
|
|
|
(Contributed by Brett Cannon in :issue:`47061` and Victor Stinner in
|
|
|
|
:gh:`68966`.)
|
2022-04-05 16:05:48 -03:00
|
|
|
|
2022-04-30 07:13:46 -03:00
|
|
|
* More strict rules will be applied now applied for numerical group references
|
|
|
|
and group names in regular expressions in future Python versions.
|
|
|
|
Only sequence of ASCII digits will be now accepted as a numerical reference.
|
|
|
|
The group name in bytes patterns and replacement strings could only
|
|
|
|
contain ASCII letters and digits and underscore.
|
|
|
|
For now, a deprecation warning is raised for such syntax.
|
|
|
|
(Contributed by Serhiy Storchaka in :gh:`91760`.)
|
|
|
|
|
2022-05-06 07:15:18 -03:00
|
|
|
* :class:`typing.Text`, which exists solely to provide compatibility support
|
|
|
|
between Python 2 and Python 3 code, is now deprecated. Its removal is
|
|
|
|
currently unplanned, but users are encouraged to use :class:`str` instead
|
|
|
|
wherever possible.
|
|
|
|
(Contributed by Alex Waygood in :gh:`92332`.)
|
|
|
|
|
2022-05-19 11:07:54 -03:00
|
|
|
* The keyword argument syntax for constructing :data:`~typing.TypedDict` types
|
|
|
|
is now deprecated. Support will be removed in Python 3.13. (Contributed by
|
|
|
|
Jingchen Ye in :gh:`90224`.)
|
|
|
|
|
2022-05-25 03:05:35 -03:00
|
|
|
* The :func:`re.template` function and the corresponding :const:`re.TEMPLATE`
|
|
|
|
and :const:`re.T` flags are deprecated, as they were undocumented and
|
|
|
|
lacked an obvious purpose. They will be removed in Python 3.13.
|
|
|
|
(Contributed by Serhiy Storchaka and Miro Hrončok in :gh:`92728`.)
|
|
|
|
|
2022-04-05 16:05:48 -03:00
|
|
|
|
2022-05-07 01:23:13 -03:00
|
|
|
Pending Removal in Python 3.12
|
|
|
|
==============================
|
|
|
|
|
|
|
|
The following APIs have been deprecated in earlier Python releases,
|
|
|
|
and will be removed in Python 3.12.
|
|
|
|
|
|
|
|
Python API:
|
|
|
|
|
|
|
|
* :class:`pkgutil.ImpImporter`
|
|
|
|
* :class:`pkgutil.ImpLoader`
|
|
|
|
* :envvar:`PYTHONTHREADDEBUG`
|
|
|
|
* :func:`importlib.find_loader`
|
|
|
|
* :func:`importlib.util.module_for_loader`
|
|
|
|
* :func:`importlib.util.set_loader_wrapper`
|
|
|
|
* :func:`importlib.util.set_package_wrapper`
|
|
|
|
* :meth:`importlib.abc.Loader.module_repr`
|
|
|
|
* :meth:`importlib.abc.Loadermodule_repr`
|
|
|
|
* :meth:`importlib.abc.MetaPathFinder.find_module`
|
|
|
|
* :meth:`importlib.abc.MetaPathFinder.find_module`
|
|
|
|
* :meth:`importlib.abc.PathEntryFinder.find_loader`
|
|
|
|
* :meth:`importlib.abc.PathEntryFinder.find_module`
|
|
|
|
* :meth:`importlib.machinery.BuiltinImporter.find_module`
|
|
|
|
* :meth:`importlib.machinery.BuiltinLoader.module_repr`
|
|
|
|
* :meth:`importlib.machinery.FileFinder.find_loader`
|
|
|
|
* :meth:`importlib.machinery.FileFinder.find_module`
|
|
|
|
* :meth:`importlib.machinery.FrozenImporter.find_module`
|
|
|
|
* :meth:`importlib.machinery.FrozenLoader.module_repr`
|
|
|
|
* :meth:`importlib.machinery.PathFinder.find_module`
|
|
|
|
* :meth:`importlib.machinery.WindowsRegistryFinder.find_module`
|
|
|
|
* :meth:`pathlib.Path.link_to`
|
|
|
|
* The entire :ref:`distutils namespace <distutils-deprecated>`
|
|
|
|
* :func:`cgi.log`
|
|
|
|
* :func:`sqlite3.OptimizedUnicode`
|
|
|
|
* :func:`sqlite3.enable_shared_cache`
|
|
|
|
|
|
|
|
C API:
|
|
|
|
|
|
|
|
* :c:func:`PyUnicode_AS_DATA`
|
|
|
|
* :c:func:`PyUnicode_AS_UNICODE`
|
|
|
|
* :c:func:`PyUnicode_AsUnicodeAndSize`
|
|
|
|
* :c:func:`PyUnicode_AsUnicode`
|
|
|
|
* :c:func:`PyUnicode_FromUnicode`
|
|
|
|
* :c:func:`PyUnicode_GET_DATA_SIZE`
|
|
|
|
* :c:func:`PyUnicode_GET_SIZE`
|
|
|
|
* :c:func:`PyUnicode_GetSize`
|
|
|
|
* :c:func:`PyUnicode_IS_COMPACT`
|
|
|
|
* :c:func:`PyUnicode_IS_READY`
|
|
|
|
* :c:func:`PyUnicode_READY`
|
|
|
|
* :c:func:`Py_UNICODE_WSTR_LENGTH`
|
|
|
|
* :c:func:`_PyUnicode_AsUnicode`
|
|
|
|
* :c:macro:`PyUnicode_WCHAR_KIND`
|
|
|
|
* :c:type:`PyUnicodeObject`
|
|
|
|
* :c:func:`PyUnicode_InternImmortal()`
|
|
|
|
|
|
|
|
|
2021-06-09 20:12:41 -03:00
|
|
|
Removed
|
|
|
|
=======
|
2021-09-02 07:10:08 -03:00
|
|
|
|
2021-06-09 20:12:41 -03:00
|
|
|
* :class:`smtpd.MailmanProxy` is now removed as it is unusable without
|
|
|
|
an external module, ``mailman``. (Contributed by Dong-hee Na in :issue:`35800`.)
|
|
|
|
|
2021-09-02 07:10:08 -03:00
|
|
|
* The ``binhex`` module, deprecated in Python 3.9, is now removed.
|
|
|
|
The following :mod:`binascii` functions, deprecated in Python 3.9, are now
|
|
|
|
also removed:
|
|
|
|
|
|
|
|
* ``a2b_hqx()``, ``b2a_hqx()``;
|
|
|
|
* ``rlecode_hqx()``, ``rledecode_hqx()``.
|
|
|
|
|
|
|
|
The :func:`binascii.crc_hqx` function remains available.
|
|
|
|
|
|
|
|
(Contributed by Victor Stinner in :issue:`45085`.)
|
|
|
|
|
2021-09-07 07:34:27 -03:00
|
|
|
* The distutils ``bdist_msi`` command, deprecated in Python 3.9, is now removed.
|
|
|
|
Use ``bdist_wheel`` (wheel packages) instead.
|
|
|
|
(Contributed by Hugo van Kemenade in :issue:`45124`.)
|
2021-06-09 20:12:41 -03:00
|
|
|
|
2021-09-08 13:58:43 -03:00
|
|
|
* Due to significant security concerns, the *reuse_address* parameter of
|
|
|
|
:meth:`asyncio.loop.create_datagram_endpoint`, disabled in Python 3.9, is
|
|
|
|
now entirely removed. This is because of the behavior of the socket option
|
|
|
|
``SO_REUSEADDR`` in UDP.
|
|
|
|
(Contributed by Hugo van Kemenade in :issue:`45129`.)
|
|
|
|
|
2021-10-20 15:48:55 -03:00
|
|
|
* Removed :meth:`__getitem__` methods of
|
2021-09-08 07:07:40 -03:00
|
|
|
:class:`xml.dom.pulldom.DOMEventStream`, :class:`wsgiref.util.FileWrapper`
|
|
|
|
and :class:`fileinput.FileInput`, deprecated since Python 3.9.
|
|
|
|
(Contributed by Hugo van Kemenade in :issue:`45132`.)
|
|
|
|
|
2021-09-13 12:40:25 -03:00
|
|
|
* The following deprecated functions and methods are removed in the :mod:`gettext`
|
|
|
|
module: :func:`~gettext.lgettext`, :func:`~gettext.ldgettext`,
|
|
|
|
:func:`~gettext.lngettext` and :func:`~gettext.ldngettext`.
|
|
|
|
|
|
|
|
Function :func:`~gettext.bind_textdomain_codeset`, methods
|
|
|
|
:meth:`~gettext.NullTranslations.output_charset` and
|
|
|
|
:meth:`~gettext.NullTranslations.set_output_charset`, and the *codeset*
|
|
|
|
parameter of functions :func:`~gettext.translation` and
|
|
|
|
:func:`~gettext.install` are also removed, since they are only used for
|
|
|
|
the ``l*gettext()`` functions.
|
|
|
|
(Contributed by Dong-hee Na and Serhiy Storchaka in :issue:`44235`.)
|
|
|
|
|
2021-07-01 10:13:59 -03:00
|
|
|
* The :func:`@asyncio.coroutine <asyncio.coroutine>` :term:`decorator` enabling
|
|
|
|
legacy generator-based coroutines to be compatible with async/await code.
|
|
|
|
The function has been deprecated since Python 3.8 and the removal was
|
|
|
|
initially scheduled for Python 3.10. Use :keyword:`async def` instead.
|
|
|
|
(Contributed by Illia Volochii in :issue:`43216`.)
|
|
|
|
|
|
|
|
* :class:`asyncio.coroutines.CoroWrapper` used for wrapping legacy
|
|
|
|
generator-based coroutine objects in the debug mode.
|
|
|
|
(Contributed by Illia Volochii in :issue:`43216`.)
|
2021-05-07 05:06:45 -03:00
|
|
|
|
2021-10-20 15:48:55 -03:00
|
|
|
* Removed the deprecated ``split()`` method of :class:`_tkinter.TkappType`.
|
2021-09-08 17:02:19 -03:00
|
|
|
(Contributed by Erlend E. Aasland in :issue:`38371`.)
|
|
|
|
|
2021-10-20 15:48:55 -03:00
|
|
|
* Removed from the :mod:`inspect` module:
|
|
|
|
|
|
|
|
* the ``getargspec`` function, deprecated since Python 3.0;
|
|
|
|
use :func:`inspect.signature` or :func:`inspect.getfullargspec` instead.
|
|
|
|
|
|
|
|
* the ``formatargspec`` function, deprecated since Python 3.5;
|
|
|
|
use the :func:`inspect.signature` function and :class:`Signature` object
|
|
|
|
directly.
|
|
|
|
|
2022-01-02 12:51:56 -04:00
|
|
|
* the undocumented ``Signature.from_builtin`` and ``Signature.from_function``
|
2021-10-20 15:48:55 -03:00
|
|
|
functions, deprecated since Python 3.5; use the
|
|
|
|
:meth:`Signature.from_callable() <inspect.Signature.from_callable>` method
|
|
|
|
instead.
|
|
|
|
|
|
|
|
(Contributed by Hugo van Kemenade in :issue:`45320`.)
|
|
|
|
|
2022-01-09 21:38:33 -04:00
|
|
|
* Remove namespace package support from unittest discovery. It was introduced in
|
|
|
|
Python 3.4 but has been broken since Python 3.7.
|
|
|
|
(Contributed by Inada Naoki in :issue:`23882`.)
|
|
|
|
|
2022-02-03 05:25:10 -04:00
|
|
|
* Remove ``__class_getitem__`` method from :class:`pathlib.PurePath`,
|
|
|
|
because it was not used and added by mistake in previous versions.
|
|
|
|
(Contributed by Nikita Sobolev in :issue:`46483`.)
|
2021-09-13 12:40:25 -03:00
|
|
|
|
2022-02-25 19:53:27 -04:00
|
|
|
* Remove the undocumented private ``float.__set_format__()`` method, previously
|
|
|
|
known as ``float.__setformat__()`` in Python 3.7. Its docstring said: "You
|
|
|
|
probably don't want to use this function. It exists mainly to be used in
|
|
|
|
Python's test suite."
|
|
|
|
(Contributed by Victor Stinner in :issue:`46852`.)
|
|
|
|
|
2021-05-07 05:06:45 -03:00
|
|
|
Porting to Python 3.11
|
|
|
|
======================
|
|
|
|
|
|
|
|
This section lists previously described changes and other bugfixes
|
|
|
|
that may require changes to your code.
|
2021-05-12 13:46:29 -03:00
|
|
|
|
|
|
|
|
2021-07-01 11:46:49 -03:00
|
|
|
Changes in the Python API
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
* Prohibited passing non-:class:`concurrent.futures.ThreadPoolExecutor`
|
|
|
|
executors to :meth:`loop.set_default_executor` following a deprecation in
|
|
|
|
Python 3.8.
|
|
|
|
(Contributed by Illia Volochii in :issue:`43234`.)
|
|
|
|
|
2021-09-02 07:58:00 -03:00
|
|
|
* :func:`open`, :func:`io.open`, :func:`codecs.open` and
|
|
|
|
:class:`fileinput.FileInput` no longer accept ``'U'`` ("universal newline")
|
|
|
|
in the file mode. This flag was deprecated since Python 3.3. In Python 3, the
|
|
|
|
"universal newline" is used by default when a file is open in text mode. The
|
|
|
|
:ref:`newline parameter <open-newline-parameter>` of :func:`open` controls
|
|
|
|
how universal newlines works.
|
|
|
|
(Contributed by Victor Stinner in :issue:`37330`.)
|
|
|
|
|
2021-09-23 06:37:39 -03:00
|
|
|
* The :mod:`pdb` module now reads the :file:`.pdbrc` configuration file with
|
|
|
|
the ``'utf-8'`` encoding.
|
|
|
|
(Contributed by Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) in :issue:`41137`.)
|
|
|
|
|
2022-02-07 19:24:09 -04:00
|
|
|
* :mod:`calendar`: The :class:`calendar.LocaleTextCalendar` and
|
|
|
|
:class:`calendar.LocaleHTMLCalendar` classes now use
|
|
|
|
:func:`locale.getlocale`, instead of using :func:`locale.getdefaultlocale`,
|
|
|
|
if no locale is specified.
|
|
|
|
(Contributed by Victor Stinner in :issue:`46659`.)
|
|
|
|
|
2022-03-19 11:10:44 -03:00
|
|
|
* Global inline flags (e.g. ``(?i)``) can now only be used at the start of
|
|
|
|
the regular expressions. Using them not at the start of expression was
|
|
|
|
deprecated since Python 3.6.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`47066`.)
|
|
|
|
|
2022-03-29 11:31:01 -03:00
|
|
|
* :mod:`re` module: Fix a few long-standing bugs where, in rare cases,
|
|
|
|
capturing group could get wrong result. So the result may be different than
|
|
|
|
before.
|
|
|
|
(Contributed by Ma Lin in :issue:`35859`.)
|
|
|
|
|
2022-03-24 10:22:58 -03:00
|
|
|
* The *population* parameter of :func:`random.sample` must be a sequence.
|
|
|
|
Automatic conversion of sets to lists is no longer supported. If the sample size
|
|
|
|
is larger than the population size, a :exc:`ValueError` is raised.
|
|
|
|
(Contributed by Raymond Hettinger in :issue:`40465`.)
|
|
|
|
|
2022-07-23 15:35:44 -03:00
|
|
|
* :class:`ast.AST` node positions are now validated when provided to
|
|
|
|
:func:`compile` and other related functions. If invalid positions are detected,
|
|
|
|
a :exc:`ValueError` will be raised. (Contributed by Pablo Galindo in :gh:`93351`)
|
|
|
|
|
2022-08-09 10:26:37 -03:00
|
|
|
* :c:member:`~PyTypeObject.tp_dictoffset` should be treated as write-only.
|
|
|
|
It can be set to describe C extension clases to the VM, but should be regarded
|
|
|
|
as meaningless when read. To get the pointer to the object's dictionary call
|
|
|
|
:c:func:`PyObject_GenericGetDict` instead.
|
2021-09-23 06:37:39 -03:00
|
|
|
|
|
|
|
Build Changes
|
|
|
|
=============
|
|
|
|
|
2022-08-29 08:10:52 -03:00
|
|
|
* Building Python now requires a C11 compiler. Optional C11 features are not
|
|
|
|
required.
|
2022-02-24 20:31:30 -04:00
|
|
|
(Contributed by Victor Stinner in :issue:`46656`.)
|
|
|
|
|
2022-03-10 09:37:19 -04:00
|
|
|
* Building Python now requires support of IEEE 754 floating point numbers.
|
|
|
|
(Contributed by Victor Stinner in :issue:`46917`.)
|
|
|
|
|
2021-09-23 06:37:39 -03:00
|
|
|
* CPython can now be built with the ThinLTO option via ``--with-lto=thin``.
|
|
|
|
(Contributed by Dong-hee Na and Brett Holman in :issue:`44340`.)
|
|
|
|
|
2021-10-11 20:24:03 -03:00
|
|
|
* libpython is no longer linked against libcrypt.
|
|
|
|
(Contributed by Mike Gilbert in :issue:`45433`.)
|
2021-07-01 11:46:49 -03:00
|
|
|
|
2021-10-13 18:27:50 -03:00
|
|
|
* Building Python now requires a C99 ``<math.h>`` header file providing
|
2021-10-15 14:45:34 -03:00
|
|
|
the following functions: ``copysign()``, ``hypot()``, ``isfinite()``,
|
|
|
|
``isinf()``, ``isnan()``, ``round()``.
|
2021-10-13 18:27:50 -03:00
|
|
|
(Contributed by Victor Stinner in :issue:`45440`.)
|
|
|
|
|
2022-02-06 08:13:04 -04:00
|
|
|
* Building Python now requires a C99 ``<math.h>`` header file providing
|
2022-02-24 20:32:57 -04:00
|
|
|
a ``NAN`` constant, or the ``__builtin_nan()`` built-in function.
|
2022-02-06 08:13:04 -04:00
|
|
|
(Contributed by Victor Stinner in :issue:`46640`.)
|
|
|
|
|
2022-02-24 20:32:57 -04:00
|
|
|
* Building Python now requires support for floating point Not-a-Number (NaN):
|
|
|
|
remove the ``Py_NO_NAN`` macro.
|
|
|
|
(Contributed by Victor Stinner in :issue:`46656`.)
|
|
|
|
|
2021-10-21 10:12:20 -03:00
|
|
|
* Freelists for object structs can now be disabled. A new :program:`configure`
|
|
|
|
option :option:`!--without-freelists` can be used to disable all freelists
|
|
|
|
except empty tuple singleton.
|
2022-07-21 21:35:56 -03:00
|
|
|
(Contributed by Christian Heimes in :issue:`45522`.)
|
2021-10-21 10:12:20 -03:00
|
|
|
|
2021-10-29 12:49:57 -03:00
|
|
|
* ``Modules/Setup`` and ``Modules/makesetup`` have been improved and tied up.
|
|
|
|
Extension modules can now be built through ``makesetup``. All except some
|
|
|
|
test modules can be linked statically into main binary or library.
|
|
|
|
(Contributed by Brett Cannon and Christian Heimes in :issue:`45548`,
|
|
|
|
:issue:`45570`, :issue:`45571`, and :issue:`43974`.)
|
|
|
|
|
2021-12-04 10:14:48 -04:00
|
|
|
* Build dependencies, compiler flags, and linker flags for most stdlib
|
|
|
|
extension modules are now detected by :program:`configure`. libffi, libnsl,
|
2022-08-16 08:44:02 -03:00
|
|
|
libsqlite3, zlib, bzip2, liblzma, libcrypt, Tcl/Tk, and uuid flags
|
|
|
|
are detected by ``pkg-config`` (when available). :mod:`tkinter` now
|
|
|
|
requires ``pkg-config`` command to detect development settings for Tcl/Tk
|
|
|
|
headers and libraries.
|
2021-12-04 10:14:48 -04:00
|
|
|
(Contributed by Christian Heimes and Erlend Egeberg Aasland in
|
2022-04-04 22:17:54 -03:00
|
|
|
:issue:`45847`, :issue:`45747`, and :issue:`45763`.)
|
2021-11-10 15:26:55 -04:00
|
|
|
|
2022-03-31 07:19:08 -03:00
|
|
|
.. note::
|
2022-08-16 08:44:02 -03:00
|
|
|
Use the environment variables :envvar:`TCLTK_CFLAGS` and
|
|
|
|
:envvar:`TCLTK_LIBS` to manually specify the location of Tcl/Tk headers
|
|
|
|
and libraries. The :program:`configure` options ``--with-tcltk-includes``
|
|
|
|
and ``--with-tcltk-libs`` have been removed.
|
|
|
|
|
|
|
|
On RHEL 7 and CentOS 7 the development packages do not provide ``tcl.pc``
|
|
|
|
and ``tk.pc``, use :envvar:`TCLTK_LIBS="-ltk8.5 -ltkstub8.5 -ltcl8.5"`.
|
|
|
|
The directory ``Misc/rhel7`` contains ``.pc`` files and instructions
|
|
|
|
how to build Python with RHEL 7's and CentOS 7's Tcl/Tk and OpenSSL.
|
2022-03-31 07:19:08 -03:00
|
|
|
|
2022-07-27 03:18:34 -03:00
|
|
|
* CPython now has :pep:`11` tier 3 support for cross compiling to WebAssembly
|
|
|
|
platform ``wasm32-unknown-emscripten`` (Python in the browser). The effort
|
|
|
|
is inspired by previous work like `Pyodide <https://pyodide.org/>`_.
|
|
|
|
Emscripten provides a limited subset of POSIX APIs. Python standard
|
|
|
|
libraries features and modules related to networking, processes, threading,
|
|
|
|
signals, mmap, and users/groups are not available or don't work.
|
|
|
|
(Contributed by Christian Heimes and Ethan Smith in :gh:`84461`,
|
|
|
|
promoted in :gh:`95085`)
|
|
|
|
|
|
|
|
* CPython now has :pep:`11` tier 3 support for cross compiling to WebAssembly
|
|
|
|
platform ``wasm32-unknown-wasi`` (WebAssembly System Interface). Like on
|
|
|
|
Emscripten, only a subset of Python's standard library is available on WASI.
|
|
|
|
(Contributed by Christian Heimes in :gh:`90473`, promoted in :gh:`95085`)
|
2021-12-02 13:42:56 -04:00
|
|
|
|
2022-01-14 14:54:56 -04:00
|
|
|
* CPython will now use 30-bit digits by default for the Python :class:`int`
|
|
|
|
implementation. Previously, the default was to use 30-bit digits on platforms
|
|
|
|
with ``SIZEOF_VOID_P >= 8``, and 15-bit digits otherwise. It's still possible
|
|
|
|
to explicitly request use of 15-bit digits via either the
|
|
|
|
``--enable-big-digits`` option to the configure script or (for Windows) the
|
|
|
|
``PYLONG_BITS_IN_DIGIT`` variable in ``PC/pyconfig.h``, but this option may
|
|
|
|
be removed at some point in the future. (Contributed by Mark Dickinson in
|
|
|
|
:issue:`45569`.)
|
|
|
|
|
2022-03-17 08:05:52 -03:00
|
|
|
* The :mod:`tkinter` package now requires Tcl/Tk version 8.5.12 or newer.
|
|
|
|
(Contributed by Serhiy Storchaka in :issue:`46996`.)
|
|
|
|
|
2022-01-14 14:54:56 -04:00
|
|
|
|
2021-05-12 13:46:29 -03:00
|
|
|
C API Changes
|
|
|
|
=============
|
2021-09-23 06:37:39 -03:00
|
|
|
|
|
|
|
New Features
|
|
|
|
------------
|
|
|
|
|
2021-07-29 04:57:02 -03:00
|
|
|
* Add a new :c:func:`PyType_GetName` function to get type's short name.
|
|
|
|
(Contributed by Hai Shi in :issue:`42035`.)
|
2021-05-12 13:46:29 -03:00
|
|
|
|
2021-08-17 10:39:34 -03:00
|
|
|
* Add a new :c:func:`PyType_GetQualName` function to get type's qualified name.
|
|
|
|
(Contributed by Hai Shi in :issue:`42035`.)
|
|
|
|
|
2021-10-15 11:06:30 -03:00
|
|
|
* Add new :c:func:`PyThreadState_EnterTracing` and
|
|
|
|
:c:func:`PyThreadState_LeaveTracing` functions to the limited C API to
|
|
|
|
suspend and resume tracing and profiling.
|
|
|
|
(Contributed by Victor Stinner in :issue:`43760`.)
|
|
|
|
|
2021-12-09 21:52:05 -04:00
|
|
|
* Added the :c:data:`Py_Version` constant which bears the same value as
|
|
|
|
:c:macro:`PY_VERSION_HEX`.
|
|
|
|
(Contributed by Gabriele N. Tornetta in :issue:`43931`.)
|
|
|
|
|
2022-02-02 11:03:10 -04:00
|
|
|
* :c:type:`Py_buffer` and APIs are now part of the limited API and the stable
|
|
|
|
ABI:
|
|
|
|
|
|
|
|
* :c:func:`PyObject_CheckBuffer`
|
|
|
|
* :c:func:`PyObject_GetBuffer`
|
|
|
|
* :c:func:`PyBuffer_GetPointer`
|
|
|
|
* :c:func:`PyBuffer_SizeFromFormat`
|
|
|
|
* :c:func:`PyBuffer_ToContiguous`
|
|
|
|
* :c:func:`PyBuffer_FromContiguous`
|
|
|
|
* :c:func:`PyBuffer_CopyData`
|
|
|
|
* :c:func:`PyBuffer_IsContiguous`
|
|
|
|
* :c:func:`PyBuffer_FillContiguousStrides`
|
|
|
|
* :c:func:`PyBuffer_FillInfo`
|
|
|
|
* :c:func:`PyBuffer_Release`
|
|
|
|
* :c:func:`PyMemoryView_FromBuffer`
|
|
|
|
* :c:member:`~PyBufferProcs.bf_getbuffer` and
|
|
|
|
:c:member:`~PyBufferProcs.bf_releasebuffer` type slots
|
|
|
|
|
|
|
|
(Contributed by Christian Heimes in :issue:`45459`.)
|
|
|
|
|
2022-02-11 12:22:11 -04:00
|
|
|
* Added the :c:data:`PyType_GetModuleByDef` function, used to get the module
|
|
|
|
in which a method was defined, in cases where this information is not
|
|
|
|
available directly (via :c:type:`PyCMethod`).
|
|
|
|
(Contributed by Petr Viktorin in :issue:`46613`.)
|
|
|
|
|
2022-03-11 19:10:02 -04:00
|
|
|
* Add new functions to pack and unpack C double (serialize and deserialize):
|
|
|
|
:c:func:`PyFloat_Pack2`, :c:func:`PyFloat_Pack4`, :c:func:`PyFloat_Pack8`,
|
|
|
|
:c:func:`PyFloat_Unpack2`, :c:func:`PyFloat_Unpack4` and
|
|
|
|
:c:func:`PyFloat_Unpack8`.
|
|
|
|
(Contributed by Victor Stinner in :issue:`46906`.)
|
|
|
|
|
2022-03-31 13:13:25 -03:00
|
|
|
* Add new functions to get frame object attributes:
|
|
|
|
:c:func:`PyFrame_GetBuiltins`, :c:func:`PyFrame_GetGenerator`,
|
2022-04-08 08:18:57 -03:00
|
|
|
:c:func:`PyFrame_GetGlobals`, :c:func:`PyFrame_GetLasti`.
|
2021-11-30 18:37:04 -04:00
|
|
|
|
2022-04-15 15:57:47 -03:00
|
|
|
* Added two new functions to get and set the active exception instance:
|
|
|
|
:c:func:`PyErr_GetHandledException` and :c:func:`PyErr_SetHandledException`.
|
|
|
|
These are alternatives to :c:func:`PyErr_SetExcInfo()` and
|
|
|
|
:c:func:`PyErr_GetExcInfo()` which work with the legacy 3-tuple
|
|
|
|
representation of exceptions.
|
|
|
|
(Contributed by Irit Katriel in :issue:`46343`.)
|
|
|
|
|
2022-05-05 20:34:11 -03:00
|
|
|
* Added the :c:member:`PyConfig.safe_path` member.
|
|
|
|
(Contributed by Victor Stinner in :gh:`57684`.)
|
2022-04-15 15:57:47 -03:00
|
|
|
|
2021-05-12 13:46:29 -03:00
|
|
|
Porting to Python 3.11
|
|
|
|
----------------------
|
|
|
|
|
2022-05-09 07:40:56 -03:00
|
|
|
* :c:func:`PyErr_SetExcInfo()` no longer uses the ``type`` and ``traceback``
|
|
|
|
arguments, the interpreter now derives those values from the exception
|
|
|
|
instance (the ``value`` argument). The function still steals references
|
|
|
|
of all three arguments.
|
|
|
|
(Contributed by Irit Katriel in :issue:`45711`.)
|
|
|
|
|
|
|
|
* :c:func:`PyErr_GetExcInfo()` now derives the ``type`` and ``traceback``
|
|
|
|
fields of the result from the exception instance (the ``value`` field).
|
|
|
|
(Contributed by Irit Katriel in :issue:`45711`.)
|
|
|
|
|
2022-10-04 20:26:14 -03:00
|
|
|
* :c:struct:`_frozen` has a new ``is_package`` field to indicate whether
|
2022-05-09 07:40:56 -03:00
|
|
|
or not the frozen module is a package. Previously, a negative value
|
|
|
|
in the ``size`` field was the indicator. Now only non-negative values
|
|
|
|
be used for ``size``.
|
|
|
|
(Contributed by Kumar Aditya in :issue:`46608`.)
|
|
|
|
|
|
|
|
* :c:func:`_PyFrameEvalFunction` now takes ``_PyInterpreterFrame*``
|
|
|
|
as its second parameter, instead of ``PyFrameObject*``.
|
|
|
|
See :pep:`523` for more details of how to use this function pointer type.
|
|
|
|
|
|
|
|
* :c:func:`PyCode_New` and :c:func:`PyCode_NewWithPosOnlyArgs` now take
|
|
|
|
an additional ``exception_table`` argument.
|
|
|
|
Using these functions should be avoided, if at all possible.
|
|
|
|
To get a custom code object: create a code object using the compiler,
|
|
|
|
then get a modified version with the ``replace`` method.
|
|
|
|
|
2022-08-04 10:53:31 -03:00
|
|
|
* :c:type:`PyCodeObject` no longer has the ``co_code``, ``co_varnames``,
|
|
|
|
``co_cellvars`` and ``co_freevars`` fields. Instead, use
|
|
|
|
:c:func:`PyCode_GetCode`, :c:func:`PyCode_GetVarnames`,
|
|
|
|
:c:func:`PyCode_GetCellvars` and :c:func:`PyCode_GetFreevars` respectively
|
|
|
|
to access them via the C API.
|
|
|
|
(Contributed by Brandt Bucher in :issue:`46841` and Ken Jin in :gh:`92154`
|
|
|
|
and :gh:`94936`.)
|
2022-05-09 07:40:56 -03:00
|
|
|
|
2021-08-18 16:50:19 -03:00
|
|
|
* The old trashcan macros (``Py_TRASHCAN_SAFE_BEGIN``/``Py_TRASHCAN_SAFE_END``)
|
|
|
|
are now deprecated. They should be replaced by the new macros
|
|
|
|
``Py_TRASHCAN_BEGIN`` and ``Py_TRASHCAN_END``.
|
|
|
|
|
|
|
|
A tp_dealloc function that has the old macros, such as::
|
|
|
|
|
|
|
|
static void
|
|
|
|
mytype_dealloc(mytype *p)
|
|
|
|
{
|
|
|
|
PyObject_GC_UnTrack(p);
|
|
|
|
Py_TRASHCAN_SAFE_BEGIN(p);
|
|
|
|
...
|
|
|
|
Py_TRASHCAN_SAFE_END
|
|
|
|
}
|
|
|
|
|
|
|
|
should migrate to the new macros as follows::
|
|
|
|
|
|
|
|
static void
|
|
|
|
mytype_dealloc(mytype *p)
|
|
|
|
{
|
|
|
|
PyObject_GC_UnTrack(p);
|
|
|
|
Py_TRASHCAN_BEGIN(p, mytype_dealloc)
|
|
|
|
...
|
|
|
|
Py_TRASHCAN_END
|
|
|
|
}
|
|
|
|
|
|
|
|
Note that ``Py_TRASHCAN_BEGIN`` has a second argument which
|
|
|
|
should be the deallocation function it is in.
|
|
|
|
|
|
|
|
To support older Python versions in the same codebase, you
|
|
|
|
can define the following macros and use them throughout
|
|
|
|
the code (credit: these were copied from the ``mypy`` codebase)::
|
|
|
|
|
|
|
|
#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 8
|
|
|
|
# define CPy_TRASHCAN_BEGIN(op, dealloc) Py_TRASHCAN_BEGIN(op, dealloc)
|
|
|
|
# define CPy_TRASHCAN_END(op) Py_TRASHCAN_END
|
|
|
|
#else
|
|
|
|
# define CPy_TRASHCAN_BEGIN(op, dealloc) Py_TRASHCAN_SAFE_BEGIN(op)
|
|
|
|
# define CPy_TRASHCAN_END(op) Py_TRASHCAN_SAFE_END(op)
|
|
|
|
#endif
|
|
|
|
|
2021-06-01 18:37:12 -03:00
|
|
|
* The :c:func:`PyType_Ready` function now raises an error if a type is defined
|
|
|
|
with the :const:`Py_TPFLAGS_HAVE_GC` flag set but has no traverse function
|
|
|
|
(:c:member:`PyTypeObject.tp_traverse`).
|
|
|
|
(Contributed by Victor Stinner in :issue:`44263`.)
|
|
|
|
|
2021-07-08 07:48:01 -03:00
|
|
|
* Heap types with the :const:`Py_TPFLAGS_IMMUTABLETYPE` flag can now inherit
|
|
|
|
the :pep:`590` vectorcall protocol. Previously, this was only possible for
|
|
|
|
:ref:`static types <static-types>`.
|
|
|
|
(Contributed by Erlend E. Aasland in :issue:`43908`)
|
|
|
|
|
2021-09-08 06:59:13 -03:00
|
|
|
* Since :c:func:`Py_TYPE()` is changed to a inline static function,
|
|
|
|
``Py_TYPE(obj) = new_type`` must be replaced with
|
|
|
|
``Py_SET_TYPE(obj, new_type)``: see the :c:func:`Py_SET_TYPE()` function
|
|
|
|
(available since Python 3.9). For backward compatibility, this macro can be
|
|
|
|
used::
|
|
|
|
|
|
|
|
#if PY_VERSION_HEX < 0x030900A4 && !defined(Py_SET_TYPE)
|
|
|
|
static inline void _Py_SET_TYPE(PyObject *ob, PyTypeObject *type)
|
|
|
|
{ ob->ob_type = type; }
|
|
|
|
#define Py_SET_TYPE(ob, type) _Py_SET_TYPE((PyObject*)(ob), type)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
(Contributed by Victor Stinner in :issue:`39573`.)
|
|
|
|
|
|
|
|
* Since :c:func:`Py_SIZE()` is changed to a inline static function,
|
|
|
|
``Py_SIZE(obj) = new_size`` must be replaced with
|
|
|
|
``Py_SET_SIZE(obj, new_size)``: see the :c:func:`Py_SET_SIZE()` function
|
|
|
|
(available since Python 3.9). For backward compatibility, this macro can be
|
|
|
|
used::
|
|
|
|
|
|
|
|
#if PY_VERSION_HEX < 0x030900A4 && !defined(Py_SET_SIZE)
|
|
|
|
static inline void _Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size)
|
|
|
|
{ ob->ob_size = size; }
|
|
|
|
#define Py_SET_SIZE(ob, size) _Py_SET_SIZE((PyVarObject*)(ob), size)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
(Contributed by Victor Stinner in :issue:`39573`.)
|
|
|
|
|
2021-10-19 07:10:22 -03:00
|
|
|
* ``<Python.h>`` no longer includes the header files ``<stdlib.h>``,
|
|
|
|
``<stdio.h>``, ``<errno.h>`` and ``<string.h>`` when the ``Py_LIMITED_API``
|
|
|
|
macro is set to ``0x030b0000`` (Python 3.11) or higher. C extensions should
|
|
|
|
explicitly include the header files after ``#include <Python.h>``.
|
2021-10-14 20:09:06 -03:00
|
|
|
(Contributed by Victor Stinner in :issue:`45434`.)
|
|
|
|
|
2022-04-06 21:29:52 -03:00
|
|
|
* The non-limited API files ``cellobject.h``, ``classobject.h``, ``code.h``, ``context.h``,
|
2021-10-15 08:06:05 -03:00
|
|
|
``funcobject.h``, ``genobject.h`` and ``longintrepr.h`` have been moved to
|
|
|
|
the ``Include/cpython`` directory. Moreover, the ``eval.h`` header file was
|
|
|
|
removed. These files must not be included directly, as they are already
|
|
|
|
included in ``Python.h``: :ref:`Include Files <api-includes>`. If they have
|
|
|
|
been included directly, consider including ``Python.h`` instead.
|
2021-10-14 20:50:28 -03:00
|
|
|
(Contributed by Victor Stinner in :issue:`35134`.)
|
|
|
|
|
2021-12-09 04:58:09 -04:00
|
|
|
* The :c:func:`PyUnicode_CHECK_INTERNED` macro has been excluded from the
|
|
|
|
limited C API. It was never usable there, because it used internal structures
|
|
|
|
which are not available in the limited C API.
|
|
|
|
(Contributed by Victor Stinner in :issue:`46007`.)
|
|
|
|
|
2022-06-19 07:02:33 -03:00
|
|
|
* The following frame functions and type are now directly available with
|
|
|
|
``#include <Python.h>``, it's no longer needed to add
|
|
|
|
``#include <frameobject.h>``:
|
|
|
|
|
|
|
|
* :c:func:`PyFrame_Check`
|
|
|
|
* :c:func:`PyFrame_GetBack`
|
|
|
|
* :c:func:`PyFrame_GetBuiltins`
|
|
|
|
* :c:func:`PyFrame_GetGenerator`
|
|
|
|
* :c:func:`PyFrame_GetGlobals`
|
|
|
|
* :c:func:`PyFrame_GetLasti`
|
|
|
|
* :c:func:`PyFrame_GetLocals`
|
|
|
|
* :c:type:`PyFrame_Type`
|
|
|
|
|
|
|
|
(Contributed by Victor Stinner in :gh:`93937`.)
|
|
|
|
|
2022-04-06 11:50:45 -03:00
|
|
|
.. _pyframeobject-3.11-hiding:
|
|
|
|
|
|
|
|
* The :c:type:`PyFrameObject` structure members have been removed from the
|
|
|
|
public C API.
|
2022-02-01 06:22:34 -04:00
|
|
|
|
2022-02-25 07:53:19 -04:00
|
|
|
While the documentation notes that the :c:type:`PyFrameObject` fields are
|
|
|
|
subject to change at any time, they have been stable for a long time and were
|
|
|
|
used in several popular extensions.
|
2022-01-13 14:21:50 -04:00
|
|
|
|
2022-02-25 07:53:19 -04:00
|
|
|
In Python 3.11, the frame struct was reorganized to allow performance
|
|
|
|
optimizations. Some fields were removed entirely, as they were details of the
|
|
|
|
old implementation.
|
|
|
|
|
|
|
|
:c:type:`PyFrameObject` fields:
|
|
|
|
|
|
|
|
* ``f_back``: use :c:func:`PyFrame_GetBack`.
|
|
|
|
* ``f_blockstack``: removed.
|
2022-03-31 13:13:25 -03:00
|
|
|
* ``f_builtins``: use :c:func:`PyFrame_GetBuiltins`.
|
2022-02-25 07:53:19 -04:00
|
|
|
* ``f_code``: use :c:func:`PyFrame_GetCode`.
|
2022-03-31 13:13:25 -03:00
|
|
|
* ``f_gen``: use :c:func:`PyFrame_GetGenerator`.
|
|
|
|
* ``f_globals``: use :c:func:`PyFrame_GetGlobals`.
|
2022-02-25 07:53:19 -04:00
|
|
|
* ``f_iblock``: removed.
|
2022-04-08 08:18:57 -03:00
|
|
|
* ``f_lasti``: use :c:func:`PyFrame_GetLasti`.
|
2022-03-31 13:13:25 -03:00
|
|
|
Code using ``f_lasti`` with ``PyCode_Addr2Line()`` should use
|
2022-04-08 08:18:57 -03:00
|
|
|
:c:func:`PyFrame_GetLineNumber` instead; it may be faster.
|
2022-02-25 07:53:19 -04:00
|
|
|
* ``f_lineno``: use :c:func:`PyFrame_GetLineNumber`
|
2022-03-25 09:57:50 -03:00
|
|
|
* ``f_locals``: use :c:func:`PyFrame_GetLocals`.
|
2022-02-25 07:53:19 -04:00
|
|
|
* ``f_stackdepth``: removed.
|
|
|
|
* ``f_state``: no public API (renamed to ``f_frame.f_state``).
|
|
|
|
* ``f_trace``: no public API.
|
2022-03-23 09:19:13 -03:00
|
|
|
* ``f_trace_lines``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_lines")``.
|
|
|
|
* ``f_trace_opcodes``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_opcodes")``.
|
2022-02-25 07:53:19 -04:00
|
|
|
* ``f_localsplus``: no public API (renamed to ``f_frame.localsplus``).
|
|
|
|
* ``f_valuestack``: removed.
|
2022-01-13 14:21:50 -04:00
|
|
|
|
|
|
|
The Python frame object is now created lazily. A side effect is that the
|
|
|
|
``f_back`` member must not be accessed directly, since its value is now also
|
|
|
|
computed lazily. The :c:func:`PyFrame_GetBack` function must be called
|
|
|
|
instead.
|
|
|
|
|
2022-03-25 09:57:50 -03:00
|
|
|
Debuggers that accessed the ``f_locals`` directly *must* call
|
2022-04-02 10:08:36 -03:00
|
|
|
:c:func:`PyFrame_GetLocals` instead. They no longer need to call
|
|
|
|
:c:func:`PyFrame_FastToLocalsWithError` or :c:func:`PyFrame_LocalsToFast`,
|
2022-03-25 09:57:50 -03:00
|
|
|
in fact they should not call those functions. The necessary updating of the
|
|
|
|
frame is now managed by the virtual machine.
|
|
|
|
|
2022-01-13 14:21:50 -04:00
|
|
|
Code defining ``PyFrame_GetCode()`` on Python 3.8 and older::
|
|
|
|
|
|
|
|
#if PY_VERSION_HEX < 0x030900B1
|
|
|
|
static inline PyCodeObject* PyFrame_GetCode(PyFrameObject *frame)
|
|
|
|
{
|
|
|
|
Py_INCREF(frame->f_code);
|
|
|
|
return frame->f_code;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Code defining ``PyFrame_GetBack()`` on Python 3.8 and older::
|
|
|
|
|
|
|
|
#if PY_VERSION_HEX < 0x030900B1
|
|
|
|
static inline PyFrameObject* PyFrame_GetBack(PyFrameObject *frame)
|
|
|
|
{
|
|
|
|
Py_XINCREF(frame->f_back);
|
|
|
|
return frame->f_back;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-02-25 07:53:19 -04:00
|
|
|
Or use the `pythoncapi_compat project
|
2022-03-03 19:46:56 -04:00
|
|
|
<https://github.com/python/pythoncapi_compat>`__ to get these two
|
2022-02-25 07:53:19 -04:00
|
|
|
functions on older Python versions.
|
2022-01-13 14:21:50 -04:00
|
|
|
|
|
|
|
* Changes of the :c:type:`PyThreadState` structure members:
|
|
|
|
|
|
|
|
* ``frame``: removed, use :c:func:`PyThreadState_GetFrame` (function added
|
|
|
|
to Python 3.9 by :issue:`40429`).
|
|
|
|
Warning: the function returns a :term:`strong reference`, need to call
|
|
|
|
:c:func:`Py_XDECREF`.
|
|
|
|
* ``tracing``: changed, use :c:func:`PyThreadState_EnterTracing`
|
|
|
|
and :c:func:`PyThreadState_LeaveTracing`
|
|
|
|
(functions added to Python 3.11 by :issue:`43760`).
|
|
|
|
* ``recursion_depth``: removed,
|
|
|
|
use ``(tstate->recursion_limit - tstate->recursion_remaining)`` instead.
|
|
|
|
* ``stackcheck_counter``: removed.
|
|
|
|
|
|
|
|
Code defining ``PyThreadState_GetFrame()`` on Python 3.8 and older::
|
|
|
|
|
|
|
|
#if PY_VERSION_HEX < 0x030900B1
|
|
|
|
static inline PyFrameObject* PyThreadState_GetFrame(PyThreadState *tstate)
|
|
|
|
{
|
|
|
|
Py_XINCREF(tstate->frame);
|
|
|
|
return tstate->frame;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Code defining ``PyThreadState_EnterTracing()`` and
|
|
|
|
``PyThreadState_LeaveTracing()`` on Python 3.10 and older::
|
|
|
|
|
|
|
|
#if PY_VERSION_HEX < 0x030B00A2
|
|
|
|
static inline void PyThreadState_EnterTracing(PyThreadState *tstate)
|
|
|
|
{
|
|
|
|
tstate->tracing++;
|
|
|
|
#if PY_VERSION_HEX >= 0x030A00A1
|
|
|
|
tstate->cframe->use_tracing = 0;
|
|
|
|
#else
|
|
|
|
tstate->use_tracing = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void PyThreadState_LeaveTracing(PyThreadState *tstate)
|
|
|
|
{
|
|
|
|
int use_tracing = (tstate->c_tracefunc != NULL || tstate->c_profilefunc != NULL);
|
|
|
|
tstate->tracing--;
|
|
|
|
#if PY_VERSION_HEX >= 0x030A00A1
|
|
|
|
tstate->cframe->use_tracing = use_tracing;
|
|
|
|
#else
|
|
|
|
tstate->use_tracing = use_tracing;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Or use `the pythoncapi_compat project
|
2022-03-03 19:46:56 -04:00
|
|
|
<https://github.com/python/pythoncapi_compat>`__ to get these functions
|
2022-01-13 14:21:50 -04:00
|
|
|
on old Python functions.
|
|
|
|
|
2022-03-26 16:52:24 -03:00
|
|
|
* Distributors are encouraged to build Python with the optimized Blake2
|
|
|
|
library `libb2`_.
|
|
|
|
|
2022-05-19 16:23:53 -03:00
|
|
|
* The :c:member:`PyConfig.module_search_paths_set` field must now be set to 1 for
|
|
|
|
initialization to use :c:member:`PyConfig.module_search_paths` to initialize
|
|
|
|
:data:`sys.path`. Otherwise, initialization will recalculate the path and replace
|
|
|
|
any values added to ``module_search_paths``.
|
|
|
|
|
|
|
|
* :c:func:`PyConfig_Read` no longer calculates the initial search path, and will not
|
|
|
|
fill any values into :c:member:`PyConfig.module_search_paths`. To calculate default
|
|
|
|
paths and then modify them, finish initialization and use :c:func:`PySys_GetObject`
|
|
|
|
to retrieve :data:`sys.path` as a Python list object and modify it directly.
|
|
|
|
|
2021-05-12 13:46:29 -03:00
|
|
|
Deprecated
|
|
|
|
----------
|
|
|
|
|
2021-05-12 18:59:25 -03:00
|
|
|
* Deprecate the following functions to configure the Python initialization:
|
|
|
|
|
|
|
|
* :c:func:`PySys_AddWarnOptionUnicode`
|
|
|
|
* :c:func:`PySys_AddWarnOption`
|
|
|
|
* :c:func:`PySys_AddXOption`
|
|
|
|
* :c:func:`PySys_HasWarnOptions`
|
2022-05-06 00:24:29 -03:00
|
|
|
* :c:func:`PySys_SetArgvEx`
|
|
|
|
* :c:func:`PySys_SetArgv`
|
|
|
|
* :c:func:`PySys_SetPath`
|
2021-05-12 18:59:25 -03:00
|
|
|
* :c:func:`Py_SetPath`
|
|
|
|
* :c:func:`Py_SetProgramName`
|
|
|
|
* :c:func:`Py_SetPythonHome`
|
|
|
|
* :c:func:`Py_SetStandardStreamEncoding`
|
|
|
|
* :c:func:`_Py_SetProgramFullPath`
|
|
|
|
|
|
|
|
Use the new :c:type:`PyConfig` API of the :ref:`Python Initialization Configuration
|
|
|
|
<init-config>` instead (:pep:`587`).
|
2022-05-06 00:24:29 -03:00
|
|
|
(Contributed by Victor Stinner in :gh:`88279`.)
|
2021-10-11 16:00:25 -03:00
|
|
|
|
2022-03-05 22:39:10 -04:00
|
|
|
* Deprecate the ``ob_shash`` member of the :c:type:`PyBytesObject`. Use :c:func:`PyObject_Hash` instead.
|
|
|
|
(Contributed by Inada Naoki in :issue:`46864`.)
|
|
|
|
|
2021-10-15 08:43:44 -03:00
|
|
|
Removed
|
|
|
|
-------
|
|
|
|
|
|
|
|
* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been
|
|
|
|
removed.
|
|
|
|
(Contributed by Mark Shannon in :issue:`40222`.)
|
|
|
|
|
2021-10-11 16:00:25 -03:00
|
|
|
* Remove the following math macros using the ``errno`` variable:
|
|
|
|
|
|
|
|
* ``Py_ADJUST_ERANGE1()``
|
|
|
|
* ``Py_ADJUST_ERANGE2()``
|
|
|
|
* ``Py_OVERFLOWED()``
|
|
|
|
* ``Py_SET_ERANGE_IF_OVERFLOW()``
|
|
|
|
* ``Py_SET_ERRNO_ON_MATH_ERROR()``
|
|
|
|
|
|
|
|
(Contributed by Victor Stinner in :issue:`45412`.)
|
2021-10-11 18:36:37 -03:00
|
|
|
|
|
|
|
* Remove ``Py_UNICODE_COPY()`` and ``Py_UNICODE_FILL()`` macros, deprecated
|
|
|
|
since Python 3.3. Use ``PyUnicode_CopyCharacters()`` or ``memcpy()``
|
|
|
|
(``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead.
|
|
|
|
(Contributed by Victor Stinner in :issue:`41123`.)
|
2021-10-13 10:22:35 -03:00
|
|
|
|
|
|
|
* Remove the ``pystrhex.h`` header file. It only contains private functions.
|
|
|
|
C extensions should only include the main ``<Python.h>`` header file.
|
|
|
|
(Contributed by Victor Stinner in :issue:`45434`.)
|
2021-10-13 18:27:50 -03:00
|
|
|
|
|
|
|
* Remove the ``Py_FORCE_DOUBLE()`` macro. It was used by the
|
|
|
|
``Py_IS_INFINITY()`` macro.
|
|
|
|
(Contributed by Victor Stinner in :issue:`45440`.)
|
2021-10-14 19:20:33 -03:00
|
|
|
|
2021-10-20 06:32:14 -03:00
|
|
|
* The following items are no longer available when :c:macro:`Py_LIMITED_API`
|
|
|
|
is defined:
|
2021-10-14 19:20:33 -03:00
|
|
|
|
|
|
|
* :c:func:`PyMarshal_WriteLongToFile`
|
|
|
|
* :c:func:`PyMarshal_WriteObjectToFile`
|
2021-10-20 06:32:14 -03:00
|
|
|
* :c:func:`PyMarshal_ReadObjectFromString`
|
|
|
|
* :c:func:`PyMarshal_WriteObjectToString`
|
|
|
|
* the ``Py_MARSHAL_VERSION`` macro
|
2021-10-14 19:20:33 -03:00
|
|
|
|
2021-10-20 06:32:14 -03:00
|
|
|
These are not part of the :ref:`limited API <stable-abi-list>`.
|
2021-10-14 19:20:33 -03:00
|
|
|
|
|
|
|
(Contributed by Victor Stinner in :issue:`45474`.)
|
2021-10-18 20:31:57 -03:00
|
|
|
|
|
|
|
* Exclude :c:func:`PyWeakref_GET_OBJECT` from the limited C API. It never
|
|
|
|
worked since the :c:type:`PyWeakReference` structure is opaque in the
|
|
|
|
limited C API.
|
|
|
|
(Contributed by Victor Stinner in :issue:`35134`.)
|
2022-01-27 19:39:52 -04:00
|
|
|
|
|
|
|
* Remove the ``PyHeapType_GET_MEMBERS()`` macro. It was exposed in the
|
|
|
|
public C API by mistake, it must only be used by Python internally.
|
|
|
|
Use the ``PyTypeObject.tp_members`` member instead.
|
|
|
|
(Contributed by Victor Stinner in :issue:`40170`.)
|
2022-02-23 13:16:23 -04:00
|
|
|
|
|
|
|
* Remove the ``HAVE_PY_SET_53BIT_PRECISION`` macro (moved to the internal C
|
|
|
|
API).
|
|
|
|
(Contributed by Victor Stinner in :issue:`45412`.)
|
2022-03-26 16:52:24 -03:00
|
|
|
|
2022-08-18 20:52:59 -03:00
|
|
|
* Remove the :c:type:`Py_UNICODE` encoder APIs,
|
|
|
|
as they have been deprecated since Python 3.3,
|
|
|
|
are little used
|
|
|
|
and are inefficient relative to the recommended alternatives.
|
|
|
|
|
|
|
|
The removed functions are:
|
|
|
|
|
|
|
|
* :func:`!PyUnicode_Encode`
|
|
|
|
* :func:`!PyUnicode_EncodeASCII`
|
|
|
|
* :func:`!PyUnicode_EncodeLatin1`
|
|
|
|
* :func:`!PyUnicode_EncodeUTF7`
|
|
|
|
* :func:`!PyUnicode_EncodeUTF8`
|
|
|
|
* :func:`!PyUnicode_EncodeUTF16`
|
|
|
|
* :func:`!PyUnicode_EncodeUTF32`
|
|
|
|
* :func:`!PyUnicode_EncodeUnicodeEscape`
|
|
|
|
* :func:`!PyUnicode_EncodeRawUnicodeEscape`
|
|
|
|
* :func:`!PyUnicode_EncodeCharmap`
|
|
|
|
* :func:`!PyUnicode_TranslateCharmap`
|
|
|
|
* :func:`!PyUnicode_EncodeDecimal`
|
|
|
|
* :func:`!PyUnicode_TransformDecimalToASCII`
|
|
|
|
|
|
|
|
See :pep:`624` for details and
|
|
|
|
:pep:`migration guidance <624#alternative-apis>`.
|
|
|
|
(Contributed by Inada Naoki in :issue:`44029`.)
|
|
|
|
|
2022-03-26 16:52:24 -03:00
|
|
|
|
|
|
|
.. _libb2: https://www.blake2.net/
|