Spaces:
Running on Zero
A newer version of the Gradio SDK is available: 6.22.0
What's New In Python 3.11
Editor : Pablo Galindo Salgado
* 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
12345{.interpreted-text role="issue"}.)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. Python 3.11 was released on October 24, 2022. For full details, see the changelog <changelog>{.interpreted-text role="ref"}.
Summary -- Release highlights {#whatsnew311-summary}
- Python 3.11 is between 10-60% faster than Python 3.10. On average, we measured a 1.25x speedup on the standard benchmark suite. See
whatsnew311-faster-cpython{.interpreted-text role="ref"} for details.
New syntax features:
whatsnew311-pep654{.interpreted-text role="ref"}
New built-in features:
whatsnew311-pep678{.interpreted-text role="ref"}
New standard library modules:
680{.interpreted-text role="pep"}:tomllib{.interpreted-text role="mod"} --- Support for parsing TOML in the Standard Library
Interpreter improvements:
whatsnew311-pep657{.interpreted-text role="ref"}- New
-P{.interpreted-text role="option"} command line option andPYTHONSAFEPATH{.interpreted-text role="envvar"} environment variable todisable automatically prepending potentially unsafe paths <whatsnew311-pythonsafepath>{.interpreted-text role="ref"} tosys.path{.interpreted-text role="data"}
New typing features:
whatsnew311-pep646{.interpreted-text role="ref"}whatsnew311-pep655{.interpreted-text role="ref"}whatsnew311-pep673{.interpreted-text role="ref"}whatsnew311-pep675{.interpreted-text role="ref"}whatsnew311-pep681{.interpreted-text role="ref"}
Important deprecations, removals and restrictions:
594{.interpreted-text role="pep"}:Many legacy standard library modules have been deprecated <whatsnew311-pep594>{.interpreted-text role="ref"} and will be removed in Python 3.13624{.interpreted-text role="pep"}:Py_UNICODE encoder APIs have been removed <whatsnew311-pep624>{.interpreted-text role="ref"}670{.interpreted-text role="pep"}:Macros converted to static inline functions <whatsnew311-pep670>{.interpreted-text role="ref"}
New Features {#whatsnew311-features}
PEP 657: Fine-grained error locations in tracebacks {#whatsnew311-pep657}
When printing tracebacks, the interpreter will now point to the exact expression that caused the error, instead of just the line. For example:
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'
Previous versions of the interpreter would point to just the line, making it ambiguous which object was None. These enhanced errors can also be helpful when dealing with deeply nested dict{.interpreted-text role="class"} objects and multiple function calls:
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
As well as complex arithmetic expressions:
Traceback (most recent call last):
File "calculation.py", line 54, in <module>
result = (x / y / z) * (a / b / c)
~~~~~~^~~
ZeroDivisionError: division by zero
Additionally, the information used by the enhanced traceback feature is made available via a general API, that can be used to correlate bytecode{.interpreted-text role="term"} instructions <bytecodes>{.interpreted-text role="ref"} with source code location. This information can be retrieved using:
- The
codeobject.co_positions{.interpreted-text role="meth"} method in Python. - The
PyCode_Addr2Location{.interpreted-text role="c:func"} function in the C API.
See 657{.interpreted-text role="pep"} for more details. (Contributed by Pablo Galindo, Batuhan Taskaya and Ammar Askar in 43950{.interpreted-text role="issue"}.)
:::: note ::: title Note :::
This feature requires storing column positions in codeobjects{.interpreted-text role="ref"}, 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 -X no_debug_ranges <-X>{.interpreted-text role="option"} command line option or the PYTHONNODEBUGRANGES{.interpreted-text role="envvar"} environment variable.
::::
PEP 654: Exception Groups and except* {#whatsnew311-pep654}
654{.interpreted-text role="pep"} introduces language features that enable a program to raise and handle multiple unrelated exceptions simultaneously. The builtin types ExceptionGroup{.interpreted-text role="exc"} and BaseExceptionGroup{.interpreted-text role="exc"} make it possible to group exceptions and raise them together, and the new except* <except_star>{.interpreted-text role="keyword"} syntax generalizes except{.interpreted-text role="keyword"} to match subgroups of exception groups.
See 654{.interpreted-text role="pep"} for more details.
(Contributed by Irit Katriel in 45292{.interpreted-text role="issue"}. PEP written by Irit Katriel, Yury Selivanov and Guido van Rossum.)
PEP 678: Exceptions can be enriched with notes {#whatsnew311-pep678}
The ~BaseException.add_note{.interpreted-text role="meth"} method is added to BaseException{.interpreted-text role="exc"}. 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 678{.interpreted-text role="pep"} for more details.
(Contributed by Irit Katriel in 45607{.interpreted-text role="issue"}. PEP written by Zac Hatfield-Dodds.)
Windows py.exe launcher improvements {#whatsnew311-windows-launcher}
The copy of the launcher{.interpreted-text role="ref"} included with Python 3.11 has been significantly updated. It now supports company/tag syntax as defined in 514{.interpreted-text role="pep"} using the -V:{<company>}/{<tag>}{.interpreted-text role="samp"} argument instead of the limited -{<major>}.{<minor>}{.interpreted-text role="samp"}. This allows launching distributions other than PythonCore, the one hosted on 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>}{.interpreted-text role="samp"}, -{<major>}.{<minor>}{.interpreted-text role="samp"}, -{<major>}-{<bitness>}{.interpreted-text role="samp"} or -{<major>}.{<minor>}-{<bitness>}{.interpreted-text role="samp"} 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.
New Features Related to Type Hints[]{#new-feat-related-type-hints-311} {#whatsnew311-typing-features}
This section covers major changes affecting 484{.interpreted-text role="pep"} type hints and the typing{.interpreted-text role="mod"} module.
PEP 646: Variadic generics {#whatsnew311-pep646}
484{.interpreted-text role="pep"} previously introduced ~typing.TypeVar{.interpreted-text role="data"}, enabling creation of generics parameterised with a single type. 646{.interpreted-text role="pep"} adds ~typing.TypeVarTuple{.interpreted-text role="data"}, enabling parameterisation with an arbitrary number of types. In other words, a ~typing.TypeVarTuple{.interpreted-text role="data"} is a variadic type variable, enabling variadic generics.
This enables a wide variety of use cases. 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 646{.interpreted-text role="pep"} for more details.
(Contributed by Matthew Rahtz in 43224{.interpreted-text role="issue"}, with contributions by Serhiy Storchaka and Jelle Zijlstra. PEP written by Mark Mendoza, Matthew Rahtz, Pradeep Kumar Srinivasan, and Vincent Siles.)
PEP 655: Marking individual TypedDict items as required or not-required {#whatsnew311-pep655}
~typing.Required{.interpreted-text role="data"} and ~typing.NotRequired{.interpreted-text role="data"} provide a straightforward way to mark whether individual items in a ~typing.TypedDict{.interpreted-text role="class"} must be present. Previously, this was only possible using inheritance.
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 !TypedDict{.interpreted-text role="class"} with one required and one not-required key:
class Movie(TypedDict):
title: str
year: NotRequired[int]
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)
The following definition is equivalent:
class Movie(TypedDict, total=False):
title: Required[str]
year: int
See 655{.interpreted-text role="pep"} for more details.
(Contributed by David Foster and Jelle Zijlstra in 47087{.interpreted-text role="issue"}. PEP written by David Foster.)
PEP 673: Self type {#whatsnew311-pep673}
The new ~typing.Self{.interpreted-text role="data"} annotation provides a simple and intuitive way to annotate methods that return an instance of their class. This behaves the same as the ~typing.TypeVar{.interpreted-text role="class"}-based approach specified in PEP 484 <484#annotating-instance-and-class-methods>{.interpreted-text role="pep"}, but is more concise and easier to follow.
Common use cases include alternative constructors provided as classmethod <classmethod>{.interpreted-text role="func"}s, and ~object.__enter__{.interpreted-text role="meth"} 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))
...
~typing.Self{.interpreted-text role="data"} can also be used to annotate method parameters or attributes of the same type as their enclosing class.
See 673{.interpreted-text role="pep"} for more details.
(Contributed by James Hilton-Balfe in 46534{.interpreted-text role="issue"}. PEP written by Pradeep Kumar Srinivasan and James Hilton-Balfe.)
PEP 675: Arbitrary literal string type {#whatsnew311-pep675}
The new ~typing.LiteralString{.interpreted-text role="data"} 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 675{.interpreted-text role="pep"} for more details.
(Contributed by Jelle Zijlstra in 47088{.interpreted-text role="issue"}. PEP written by Pradeep Kumar Srinivasan and Graham Bleaney.)
PEP 681: Data class transforms {#whatsnew311-pep681}
~typing.dataclass_transform{.interpreted-text role="data"} may be used to decorate a class, metaclass, or a function that is itself a decorator. The presence of @dataclass_transform() tells a static type checker that the decorated object performs runtime "magic" that transforms a class, giving it dataclass <dataclasses.dataclass>{.interpreted-text role="func"}-like behaviors.
For example:
# The create_model decorator is defined by a library.
@typing.dataclass_transform()
def create_model(cls: Type[T]) -> Type[T]:
cls.__init__ = ...
cls.__eq__ = ...
cls.__ne__ = ...
return cls
# The create_model decorator can now be used to create new model classes:
@create_model
class CustomerModel:
id: int
name: str
c = CustomerModel(id=327, name="Eric Idle")
See 681{.interpreted-text role="pep"} for more details.
(Contributed by Jelle Zijlstra in 91860{.interpreted-text role="gh"}. PEP written by Erik De Bonte and Eric Traut.)
PEP 563 may not be the future {#whatsnew311-pep563-deferred}
563{.interpreted-text role="pep"} Postponed Evaluation of Annotations (the from __future__ import annotations future statement <future>{.interpreted-text role="ref"}) that was originally planned for release in Python 3.10 has been put on hold indefinitely. See this message from the Steering Council for more information.
Other Language Changes {#whatsnew311-other-lang-changes}
- Starred unpacking expressions can now be used in
for{.interpreted-text role="keyword"} statements. (See46725{.interpreted-text role="issue"} for more details.) - Asynchronous
comprehensions <comprehensions>{.interpreted-text role="ref"} are now allowed inside comprehensions inasynchronous functions <async def>{.interpreted-text role="ref"}. Outer comprehensions implicitly become asynchronous in this case. (Contributed by Serhiy Storchaka in33346{.interpreted-text role="issue"}.) - A
TypeError{.interpreted-text role="exc"} is now raised instead of anAttributeError{.interpreted-text role="exc"} inwith{.interpreted-text role="keyword"} statements andcontextlib.ExitStack.enter_context{.interpreted-text role="meth"} for objects that do not support thecontext manager{.interpreted-text role="term"} protocol, and inasync with{.interpreted-text role="keyword"} statements andcontextlib.AsyncExitStack.enter_async_context{.interpreted-text role="meth"} for objects not supporting theasynchronous context manager{.interpreted-text role="term"} protocol. (Contributed by Serhiy Storchaka in12022{.interpreted-text role="issue"} and44471{.interpreted-text role="issue"}.) - Added
object.__getstate__{.interpreted-text role="meth"}, which provides the default implementation of the!__getstate__{.interpreted-text role="meth"} method.copy{.interpreted-text role="mod"}ing andpickle{.interpreted-text role="mod"}ing instances of subclasses of builtin typesbytearray{.interpreted-text role="class"},set{.interpreted-text role="class"},frozenset{.interpreted-text role="class"},collections.OrderedDict{.interpreted-text role="class"},collections.deque{.interpreted-text role="class"},weakref.WeakSet{.interpreted-text role="class"}, anddatetime.tzinfo{.interpreted-text role="class"} now copies and pickles instance attributes implemented asslots <__slots__>{.interpreted-text role="term"}. This change has an unintended side effect: It trips up a small minority of existing Python projects not expectingobject.__getstate__{.interpreted-text role="meth"} to exist. See the later comments on70766{.interpreted-text role="gh"} for discussions of what workarounds such code may need. (Contributed by Serhiy Storchaka in26579{.interpreted-text role="issue"}.)
::: {#whatsnew311-pythonsafepath}
- Added a
-P{.interpreted-text role="option"} command line option and aPYTHONSAFEPATH{.interpreted-text role="envvar"} environment variable, which disable the automatic prepending tosys.path{.interpreted-text role="data"} of the script's directory when running a script, or the current directory when using-c{.interpreted-text role="option"} and-m{.interpreted-text role="option"}. This ensures only stdlib and installed modules are picked up byimport{.interpreted-text role="keyword"}, and avoids unintentionally or maliciously shadowing modules with those in a local (and typically user-writable) directory. (Contributed by Victor Stinner in57684{.interpreted-text role="gh"}.) - A
"z"option was added to theformatspec{.interpreted-text role="ref"} that coerces negative to positive zero after rounding to the format precision. See682{.interpreted-text role="pep"} for more details. (Contributed by John Belmonte in90153{.interpreted-text role="gh"}.) - Bytes are no longer accepted on
sys.path{.interpreted-text role="data"}. 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-b{.interpreted-text role="option"} andsys.path_importer_cache{.interpreted-text role="data"} when there is a mixture ofstr{.interpreted-text role="class"} andbytes{.interpreted-text role="class"} keys. (Contributed by Thomas Grainger in91181{.interpreted-text role="gh"}.) :::
Other CPython Implementation Changes {#whatsnew311-other-implementation-changes}
- The special methods
~object.__complex__{.interpreted-text role="meth"} forcomplex{.interpreted-text role="class"} and~object.__bytes__{.interpreted-text role="meth"} forbytes{.interpreted-text role="class"} are implemented to support thetyping.SupportsComplex{.interpreted-text role="class"} andtyping.SupportsBytes{.interpreted-text role="class"} protocols. (Contributed by Mark Dickinson and Donghee Na in24234{.interpreted-text role="issue"}.) siphash13is added as a new internal hashing algorithm. It has similar security properties assiphash24, but it is slightly faster for long inputs.str{.interpreted-text role="class"},bytes{.interpreted-text role="class"}, and some other types now use it as the default algorithm forhash{.interpreted-text role="func"}.552{.interpreted-text role="pep"}hash-based .pyc files <pyc-invalidation>{.interpreted-text role="ref"} now usesiphash13too. (Contributed by Inada Naoki in29410{.interpreted-text role="issue"}.)- When an active exception is re-raised by a
raise{.interpreted-text role="keyword"} statement with no parameters, the traceback attached to this exception is now alwayssys.exc_info()[1].__traceback__. This means that changes made to the traceback in the currentexcept{.interpreted-text role="keyword"} clause are reflected in the re-raised exception. (Contributed by Irit Katriel in45711{.interpreted-text role="issue"}.) - The interpreter state's representation of handled exceptions (aka
exc_infoor_PyErr_StackItem) now only has theexc_valuefield;exc_typeandexc_tracebackhave been removed, as they can be derived fromexc_value. (Contributed by Irit Katriel in45711{.interpreted-text role="issue"}.) - A new
command line option <install-quiet-option>{.interpreted-text role="ref"},AppendPath, has been added for the Windows installer. It behaves similarly toPrependPath, but appends the install and scripts directories instead of prepending them. (Contributed by Bastian Neuburger in44934{.interpreted-text role="issue"}.) - The
PyConfig.module_search_paths_set{.interpreted-text role="c:member"} field must now be set to1for initialization to usePyConfig.module_search_paths{.interpreted-text role="c:member"} to initializesys.path{.interpreted-text role="data"}. Otherwise, initialization will recalculate the path and replace any values added tomodule_search_paths. - The output of the
--help{.interpreted-text role="option"} option now fits in 50 lines/80 columns. Information aboutPython environment variables <using-on-envvars>{.interpreted-text role="ref"} and-X{.interpreted-text role="option"} options is now available using the respective--help-env{.interpreted-text role="option"} and--help-xoptions{.interpreted-text role="option"} flags, and with the new--help-all{.interpreted-text role="option"}. (Contributed by Éric Araujo in46142{.interpreted-text role="issue"}.) - Converting between
int{.interpreted-text role="class"} andstr{.interpreted-text role="class"} in bases other than 2 (binary), 4, 8 (octal), 16 (hexadecimal), or 32 such as base 10 (decimal) now raises aValueError{.interpreted-text role="exc"} if the number of digits in string form is above a limit to avoid potential denial of service attacks due to the algorithmic complexity. This is a mitigation for2020-10735{.interpreted-text role="cve"}. This limit can be configured or disabled by environment variable, command line flag, orsys{.interpreted-text role="mod"} APIs. See theinteger string conversion length limitation <int_max_str_digits>{.interpreted-text role="ref"} documentation. The default limit is 4300 digits in string form.
New Modules {#whatsnew311-new-modules}
tomllib{.interpreted-text role="mod"}: For parsing TOML. See680{.interpreted-text role="pep"} for more details. (Contributed by Taneli Hukkinen in40059{.interpreted-text role="issue"}.)wsgiref.types{.interpreted-text role="mod"}:WSGI <3333>{.interpreted-text role="pep"}-specific types for static type checking. (Contributed by Sebastian Rittau in42012{.interpreted-text role="issue"}.)
Improved Modules {#whatsnew311-improved-modules}
asyncio {#whatsnew311-asyncio}
- Added the
~asyncio.TaskGroup{.interpreted-text role="class"} class, anasynchronous context manager <async-context-managers>{.interpreted-text role="ref"} holding a group of tasks that will wait for all of them upon exit. For new code this is recommended over using~asyncio.create_task{.interpreted-text role="func"} and~asyncio.gather{.interpreted-text role="func"} directly. (Contributed by Yury Selivanov and others in90908{.interpreted-text role="gh"}.) - Added
~asyncio.timeout{.interpreted-text role="func"}, an asynchronous context manager for setting a timeout on asynchronous operations. For new code this is recommended over using~asyncio.wait_for{.interpreted-text role="func"} directly. (Contributed by Andrew Svetlov in90927{.interpreted-text role="gh"}.) - Added the
~asyncio.Runner{.interpreted-text role="class"} class, which exposes the machinery used by~asyncio.run{.interpreted-text role="func"}. (Contributed by Andrew Svetlov in91218{.interpreted-text role="gh"}.) - Added the
~asyncio.Barrier{.interpreted-text role="class"} class to the synchronization primitives in the asyncio library, and the related~asyncio.BrokenBarrierError{.interpreted-text role="exc"} exception. (Contributed by Yves Duprat and Andrew Svetlov in87518{.interpreted-text role="gh"}.) - Added keyword argument all_errors to
asyncio.loop.create_connection{.interpreted-text role="meth"} so that multiple connection errors can be raised as anExceptionGroup{.interpreted-text role="exc"}. - Added the
asyncio.StreamWriter.start_tls{.interpreted-text role="meth"} method for upgrading existing stream-based connections to TLS. (Contributed by Ian Good in34975{.interpreted-text role="issue"}.) - Added raw datagram socket functions to the event loop:
~asyncio.loop.sock_sendto{.interpreted-text role="meth"},~asyncio.loop.sock_recvfrom{.interpreted-text role="meth"} and~asyncio.loop.sock_recvfrom_into{.interpreted-text role="meth"}. These have implementations in~asyncio.SelectorEventLoop{.interpreted-text role="class"} and~asyncio.ProactorEventLoop{.interpreted-text role="class"}. (Contributed by Alex Grönholm in46805{.interpreted-text role="issue"}.) - Added
~asyncio.Task.cancelling{.interpreted-text role="meth"} and~asyncio.Task.uncancel{.interpreted-text role="meth"} methods to~asyncio.Task{.interpreted-text role="class"}. These are primarily intended for internal use, notably by~asyncio.TaskGroup{.interpreted-text role="class"}.
contextlib {#whatsnew311-contextlib}
- Added non parallel-safe
~contextlib.chdir{.interpreted-text role="func"} context manager to change the current working directory and then restore it on exit. Simple wrapper around~os.chdir{.interpreted-text role="func"}. (Contributed by Filipe Laíns in25625{.interpreted-text role="issue"})
dataclasses {#whatsnew311-dataclasses}
- Change field default mutability check, allowing only defaults which are
hashable{.interpreted-text role="term"} instead of any object which is not an instance ofdict{.interpreted-text role="class"},list{.interpreted-text role="class"} orset{.interpreted-text role="class"}. (Contributed by Eric V. Smith in44674{.interpreted-text role="issue"}.)
datetime {#whatsnew311-datetime}
- Add
datetime.UTC{.interpreted-text role="const"}, a convenience alias fordatetime.timezone.utc{.interpreted-text role="attr"}. (Contributed by Kabir Kwatra in91973{.interpreted-text role="gh"}.) datetime.date.fromisoformat{.interpreted-text role="meth"},datetime.time.fromisoformat{.interpreted-text role="meth"} anddatetime.datetime.fromisoformat{.interpreted-text role="meth"} can now be used to parse most ISO 8601 formats (barring only those that support fractional hours and minutes). (Contributed by Paul Ganssle in80010{.interpreted-text role="gh"}.)
enum {#whatsnew311-enum}
- Renamed
!EnumMeta{.interpreted-text role="class"} to~enum.EnumType{.interpreted-text role="class"} (!EnumMeta{.interpreted-text role="class"} kept as an alias). - Added
~enum.StrEnum{.interpreted-text role="class"}, with members that can be used as (and must be) strings. - Added
~enum.ReprEnum{.interpreted-text role="class"}, which only modifies the~object.__repr__{.interpreted-text role="meth"} of members while returning their literal values (rather than names) for~object.__str__{.interpreted-text role="meth"} and~object.__format__{.interpreted-text role="meth"} (used bystr{.interpreted-text role="func"},format{.interpreted-text role="func"} andf-string{.interpreted-text role="term"}s). - Changed
Enum.__format__() <enum.Enum.__format__>{.interpreted-text role="meth"} (the default forformat{.interpreted-text role="func"},str.format{.interpreted-text role="meth"} andf-string{.interpreted-text role="term"}s) to always produce the same result asEnum.__str__() <enum.Enum.__str__>{.interpreted-text role="meth"}: for enums inheriting from~enum.ReprEnum{.interpreted-text role="class"} it will be the member's value; for all other enums it will be the enum and member name (e.g.Color.RED). - Added a new boundary class parameter to
~enum.Flag{.interpreted-text role="class"} enums and the~enum.FlagBoundary{.interpreted-text role="class"} enum with its options, to control how to handle out-of-range flag values. - Added the
~enum.verify{.interpreted-text role="func"} enum decorator and the~enum.EnumCheck{.interpreted-text role="class"} enum with its options, to check enum classes against several specific constraints. - Added the
~enum.member{.interpreted-text role="func"} and~enum.nonmember{.interpreted-text role="func"} decorators, to ensure the decorated object is/is not converted to an enum member. - Added the
~enum.property{.interpreted-text role="func"} decorator, which works likeproperty{.interpreted-text role="func"} except for enums. Use this instead oftypes.DynamicClassAttribute{.interpreted-text role="func"}. - Added the
~enum.global_enum{.interpreted-text role="func"} enum decorator, which adjusts~object.__repr__{.interpreted-text role="meth"} and~object.__str__{.interpreted-text role="meth"} to show values as members of their module rather than the enum class. For example,'re.ASCII'for the~re.ASCII{.interpreted-text role="const"} member ofre.RegexFlag{.interpreted-text role="class"} rather than'RegexFlag.ASCII'. - Enhanced
~enum.Flag{.interpreted-text role="class"} to supportlen{.interpreted-text role="func"}, iteration andin{.interpreted-text role="keyword"}/not in{.interpreted-text role="keyword"} on its members. For example, the following now works:len(AFlag(3)) == 2 and list(AFlag(3)) == (AFlag.ONE, AFlag.TWO) - Changed
~enum.Enum{.interpreted-text role="class"} and~enum.Flag{.interpreted-text role="class"} so that members are now defined before~object.__init_subclass__{.interpreted-text role="meth"} is called;dir{.interpreted-text role="func"} now includes methods, etc., from mixed-in data types. - Changed
~enum.Flag{.interpreted-text role="class"} to only consider primary values (power of two) canonical while composite values (3,6,10, etc.) are considered aliases; inverted flags are coerced to their positive equivalent.
fcntl {#whatsnew311-fcntl}
- On FreeBSD, the
!F_DUP2FD{.interpreted-text role="data"} and!F_DUP2FD_CLOEXEC{.interpreted-text role="data"} flags respectively are supported, the former equals todup2usage while the latter set theFD_CLOEXECflag in addition.
fractions {#whatsnew311-fractions}
- Support PEP 515-style initialization of
~fractions.Fraction{.interpreted-text role="class"} from string. (Contributed by Sergey B Kirpichev in44258{.interpreted-text role="issue"}.) ~fractions.Fraction{.interpreted-text role="class"} now implements an__int__method, so that anisinstance(some_fraction, typing.SupportsInt)check passes. (Contributed by Mark Dickinson in44547{.interpreted-text role="issue"}.)
functools {#whatsnew311-functools}
functools.singledispatch{.interpreted-text role="func"} now supportstypes.UnionType{.interpreted-text role="class"} andtyping.Union{.interpreted-text role="class"} 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
46014{.interpreted-text role="issue"}.)
gzip {#whatsnew311-gzip}
- The
gzip.compress{.interpreted-text role="func"} function is now faster when used with the mtime=0 argument as it delegates the compression entirely to a singlezlib.compress{.interpreted-text role="func"} operation. There is one side effect of this change: The gzip file header contains an "OS" byte in its header. That was traditionally always set to a value of 255 representing "unknown" by thegzip{.interpreted-text role="mod"} module. Now, when using~gzip.compress{.interpreted-text role="func"} with mtime=0, it may be set to a different value by the underlying zlib C library Python was linked against. (See112346{.interpreted-text role="gh"} for details on the side effect.)
hashlib {#whatsnew311-hashlib}
hashlib.blake2b{.interpreted-text role="func"} andhashlib.blake2s{.interpreted-text role="func"} now prefer libb2 over Python's vendored copy. (Contributed by Christian Heimes in47095{.interpreted-text role="issue"}.)- The internal
_sha3module with SHA3 and SHAKE algorithms now uses tiny_sha3 instead of the Keccak Code Package to reduce code and binary size. Thehashlib{.interpreted-text role="mod"} module prefers optimized SHA3 and SHAKE implementations from OpenSSL. The change affects only installations without OpenSSL support. (Contributed by Christian Heimes in47098{.interpreted-text role="issue"}.) - Add
hashlib.file_digest{.interpreted-text role="func"}, a helper function for efficient hashing of files or file-like objects. (Contributed by Christian Heimes in89313{.interpreted-text role="gh"}.)
IDLE and idlelib {#whatsnew311-idle}
- Apply syntax highlighting to
.pyifiles. (Contributed by Alex Waygood and Terry Jan Reedy in45447{.interpreted-text role="issue"}.) - Include prompts when saving Shell with inputs and outputs. (Contributed by Terry Jan Reedy in
95191{.interpreted-text role="gh"}.)
inspect {#whatsnew311-inspect}
Add
~inspect.getmembers_static{.interpreted-text role="func"} to return all members without triggering dynamic lookup via the descriptor protocol. (Contributed by Weipeng Hong in30533{.interpreted-text role="issue"}.)Add
~inspect.ismethodwrapper{.interpreted-text role="func"} for checking if the type of an object is a~types.MethodWrapperType{.interpreted-text role="class"}. (Contributed by Hakan Çelik in29418{.interpreted-text role="issue"}.)Change the frame-related functions in the
inspect{.interpreted-text role="mod"} module to return new~inspect.FrameInfo{.interpreted-text role="class"} and~inspect.Traceback{.interpreted-text role="class"} class instances (backwards compatible with the previousnamed tuple{.interpreted-text role="term"}-like interfaces) that includes the extended657{.interpreted-text role="pep"} position information (end line number, column and end column). The affected functions are:inspect.getframeinfo{.interpreted-text role="func"}inspect.getouterframes{.interpreted-text role="func"}inspect.getinnerframes{.interpreted-text role="func"},inspect.stack{.interpreted-text role="func"}inspect.trace{.interpreted-text role="func"}
(Contributed by Pablo Galindo in
88116{.interpreted-text role="gh"}.)
locale {#whatsnew311-locale}
- Add
locale.getencoding{.interpreted-text role="func"} to get the current locale encoding. It is similar tolocale.getpreferredencoding(False)but ignores thePython UTF-8 Mode <utf8-mode>{.interpreted-text role="ref"}.
logging {#whatsnew311-logging}
- Added
~logging.getLevelNamesMapping{.interpreted-text role="func"} to return a mapping from logging level names (e.g.'CRITICAL') to the values of their correspondinglevels{.interpreted-text role="ref"} (e.g.50, by default). (Contributed by Andrei Kulakovin in88024{.interpreted-text role="gh"}.) - Added a
~logging.handlers.SysLogHandler.createSocket{.interpreted-text role="meth"} method to~logging.handlers.SysLogHandler{.interpreted-text role="class"}, to matchSocketHandler.createSocket() <logging.handlers.SocketHandler.createSocket>{.interpreted-text role="meth"}. It is called automatically during handler initialization and when emitting an event, if there is no active socket. (Contributed by Kirill Pinchuk in88457{.interpreted-text role="gh"}.)
math {#whatsnew311-math}
- Add
math.exp2{.interpreted-text role="func"}: return 2 raised to the power of x. (Contributed by Gideon Mitchell in45917{.interpreted-text role="issue"}.) - Add
math.cbrt{.interpreted-text role="func"}: return the cube root of x. (Contributed by Ajith Ramachandran in44357{.interpreted-text role="issue"}.) - The behaviour of two
math.pow{.interpreted-text role="func"} corner cases was changed, for consistency with the IEEE 754 specification. The operationsmath.pow(0.0, -math.inf)andmath.pow(-0.0, -math.inf)now returninf. Previously they raisedValueError{.interpreted-text role="exc"}. (Contributed by Mark Dickinson in44339{.interpreted-text role="issue"}.) - The
math.nan{.interpreted-text role="data"} value is now always available. (Contributed by Victor Stinner in46917{.interpreted-text role="issue"}.)
operator {#whatsnew311-operator}
- A new function
operator.callhas been added, such thatoperator.call(obj, *args, **kwargs) == obj(*args, **kwargs). (Contributed by Antony Lee in44019{.interpreted-text role="issue"}.)
os {#whatsnew311-os}
- On Windows,
os.urandom{.interpreted-text role="func"} now usesBCryptGenRandom(), instead ofCryptGenRandom()which is deprecated. (Contributed by Donghee Na in44611{.interpreted-text role="issue"}.)
pathlib {#whatsnew311-pathlib}
~pathlib.Path.glob{.interpreted-text role="meth"} and~pathlib.Path.rglob{.interpreted-text role="meth"} return only directories if pattern ends with a pathname components separator:~os.sep{.interpreted-text role="data"} or~os.altsep{.interpreted-text role="data"}. (Contributed by Eisuke Kawasima in22276{.interpreted-text role="issue"} and33392{.interpreted-text role="issue"}.)
re {#whatsnew311-re}
- Atomic grouping (
(?>...)) and possessive quantifiers (*+,++,?+,{m,n}+) are now supported in regular expressions. (Contributed by Jeffrey C. Jacobs and Serhiy Storchaka in433030{.interpreted-text role="issue"}.)
shutil {#whatsnew311-shutil}
- Add optional parameter dir_fd in
shutil.rmtree{.interpreted-text role="func"}. (Contributed by Serhiy Storchaka in46245{.interpreted-text role="issue"}.)
socket {#whatsnew311-socket}
- Add CAN Socket support for NetBSD. (Contributed by Thomas Klausner in
30512{.interpreted-text role="issue"}.) ~socket.create_connection{.interpreted-text role="meth"} has an option to raise, in case of failure to connect, anExceptionGroup{.interpreted-text role="exc"} containing all errors instead of only raising the last error. (Contributed by Irit Katriel in29980{.interpreted-text role="issue"}.)
sqlite3 {#whatsnew311-sqlite3}
- You can now disable the authorizer by passing
None{.interpreted-text role="const"} to~sqlite3.Connection.set_authorizer{.interpreted-text role="meth"}. (Contributed by Erlend E. Aasland in44491{.interpreted-text role="issue"}.) - Collation name
~sqlite3.Connection.create_collation{.interpreted-text role="meth"} can now contain any Unicode character. Collation names with invalid characters now raiseUnicodeEncodeError{.interpreted-text role="exc"} instead ofsqlite3.ProgrammingError{.interpreted-text role="exc"}. (Contributed by Erlend E. Aasland in44688{.interpreted-text role="issue"}.) sqlite3{.interpreted-text role="mod"} exceptions now include the SQLite extended error code as~sqlite3.Error.sqlite_errorcode{.interpreted-text role="attr"} and the SQLite error name as~sqlite3.Error.sqlite_errorname{.interpreted-text role="attr"}. (Contributed by Aviv Palivoda, Daniel Shahaf, and Erlend E. Aasland in16379{.interpreted-text role="issue"} and24139{.interpreted-text role="issue"}.)- Add
~sqlite3.Connection.setlimit{.interpreted-text role="meth"} and~sqlite3.Connection.getlimit{.interpreted-text role="meth"} tosqlite3.Connection{.interpreted-text role="class"} for setting and getting SQLite limits by connection basis. (Contributed by Erlend E. Aasland in45243{.interpreted-text role="issue"}.) sqlite3{.interpreted-text role="mod"} now setssqlite3.threadsafety{.interpreted-text role="attr"} based on the default threading mode the underlying SQLite library has been compiled with. (Contributed by Erlend E. Aasland in45613{.interpreted-text role="issue"}.)sqlite3{.interpreted-text role="mod"} C callbacks now use unraisable exceptions if callback tracebacks are enabled. Users can now register anunraisable hook handler <sys.unraisablehook>{.interpreted-text role="func"} to improve their debug experience. (Contributed by Erlend E. Aasland in45828{.interpreted-text role="issue"}.)- Fetch across rollback no longer raises
~sqlite3.InterfaceError{.interpreted-text role="exc"}. Instead we leave it to the SQLite library to handle these cases. (Contributed by Erlend E. Aasland in44092{.interpreted-text role="issue"}.) - Add
~sqlite3.Connection.serialize{.interpreted-text role="meth"} and~sqlite3.Connection.deserialize{.interpreted-text role="meth"} tosqlite3.Connection{.interpreted-text role="class"} for serializing and deserializing databases. (Contributed by Erlend E. Aasland in41930{.interpreted-text role="issue"}.) - Add
~sqlite3.Connection.create_window_function{.interpreted-text role="meth"} tosqlite3.Connection{.interpreted-text role="class"} for creating aggregate window functions. (Contributed by Erlend E. Aasland in34916{.interpreted-text role="issue"}.) - Add
~sqlite3.Connection.blobopen{.interpreted-text role="meth"} tosqlite3.Connection{.interpreted-text role="class"}.sqlite3.Blob{.interpreted-text role="class"} allows incremental I/O operations on blobs. (Contributed by Aviv Palivoda and Erlend E. Aasland in24905{.interpreted-text role="issue"}.)
string {#whatsnew311-string}
- Add
~string.Template.get_identifiers{.interpreted-text role="meth"} and~string.Template.is_valid{.interpreted-text role="meth"} tostring.Template{.interpreted-text role="class"}, which respectively return all valid placeholders, and whether any invalid placeholders are present. (Contributed by Ben Kehoe in90465{.interpreted-text role="gh"}.)
sys {#whatsnew311-sys}
sys.exc_info{.interpreted-text role="func"} now derives thetypeandtracebackfields from thevalue(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!exc_info{.interpreted-text role="func"}. (Contributed by Irit Katriel in45711{.interpreted-text role="issue"}.)- Add
sys.exception{.interpreted-text role="func"} which returns the active exception instance (equivalent tosys.exc_info()[1]). (Contributed by Irit Katriel in46328{.interpreted-text role="issue"}.) - Add the
sys.flags.safe_path <sys.flags>{.interpreted-text role="data"} flag. (Contributed by Victor Stinner in57684{.interpreted-text role="gh"}.)
sysconfig {#whatsnew311-sysconfig}
- Three new
installation schemes <installation_paths>{.interpreted-text role="ref"} (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 modifysysconfig.get_preferred_scheme{.interpreted-text role="func"}. Third party code that creates new virtual environments should use the new venv installation scheme to determine the paths, as doesvenv{.interpreted-text role="mod"}. (Contributed by Miro Hrončok in45413{.interpreted-text role="issue"}.)
tempfile {#whatsnew311-tempfile}
~tempfile.SpooledTemporaryFile{.interpreted-text role="class"} objects now fully implement the methods ofio.BufferedIOBase{.interpreted-text role="class"} orio.TextIOBase{.interpreted-text role="class"} (depending on file mode). This lets them work correctly with APIs that expect file-like objects, such as compression modules. (Contributed by Carey Metcalfe in70363{.interpreted-text role="gh"}.)
threading {#whatsnew311-threading}
- On Unix, if the
sem_clockwait()function is available in the C library (glibc 2.30 and newer), thethreading.Lock.acquire{.interpreted-text role="meth"} method now uses the monotonic clock (time.CLOCK_MONOTONIC{.interpreted-text role="const"}) for the timeout, rather than using the system clock (time.CLOCK_REALTIME{.interpreted-text role="const"}), to not be affected by system clock changes. (Contributed by Victor Stinner in41710{.interpreted-text role="issue"}.)
time {#whatsnew311-time}
- On Unix,
time.sleep{.interpreted-text role="func"} now uses theclock_nanosleep()ornanosleep()function, if available, which has a resolution of 1 nanosecond (10^-9^ seconds), rather than usingselect()which has a resolution of 1 microsecond (10^-6^ seconds). (Contributed by Benjamin Szőke and Victor Stinner in21302{.interpreted-text role="issue"}.) - On Windows 8.1 and newer,
time.sleep{.interpreted-text role="func"} now uses a waitable timer based on high-resolution timers which has a resolution of 100 nanoseconds (10^-7^ seconds). Previously, it had a resolution of 1 millisecond (10^-3^ seconds). (Contributed by Benjamin Szőke, Donghee Na, Eryk Sun and Victor Stinner in21302{.interpreted-text role="issue"} and45429{.interpreted-text role="issue"}.)
tkinter {#whatsnew311-tkinter}
- Added method
info_patchlevel()which returns the exact version of the Tcl library as a named tuple similar tosys.version_info{.interpreted-text role="data"}. (Contributed by Serhiy Storchaka in91827{.interpreted-text role="gh"}.)
traceback {#whatsnew311-traceback}
- Add
traceback.StackSummary.format_frame_summary{.interpreted-text role="func"} to allow users to override which frames appear in the traceback, and how they are formatted. (Contributed by Ammar Askar in44569{.interpreted-text role="issue"}.) - Add
traceback.TracebackException.print{.interpreted-text role="func"}, which prints the formatted~traceback.TracebackException{.interpreted-text role="exc"} instance to a file. (Contributed by Irit Katriel in33809{.interpreted-text role="issue"}.)
typing {#whatsnew311-typing}
For major changes, see new-feat-related-type-hints-311{.interpreted-text role="ref"}.
- Add
typing.assert_never{.interpreted-text role="func"} andtyping.Never{.interpreted-text role="class"}.typing.assert_never{.interpreted-text role="func"} is useful for asking a type checker to confirm that a line of code is not reachable. At runtime, it raises anAssertionError{.interpreted-text role="exc"}. (Contributed by Jelle Zijlstra in90633{.interpreted-text role="gh"}.) - Add
typing.reveal_type{.interpreted-text role="func"}. 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 in90572{.interpreted-text role="gh"}.) - Add
typing.assert_type{.interpreted-text role="func"}. 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 in90638{.interpreted-text role="gh"}.) typing.TypedDict{.interpreted-text role="data"} types can now be generic. (Contributed by Samodya Abeysiriwardane in89026{.interpreted-text role="gh"}.)~typing.NamedTuple{.interpreted-text role="class"} types can now be generic. (Contributed by Serhiy Storchaka in43923{.interpreted-text role="issue"}.)- Allow subclassing of
typing.Any{.interpreted-text role="class"}. This is useful for avoiding type checker errors related to highly dynamic class, such as mocks. (Contributed by Shantanu Jain in91154{.interpreted-text role="gh"}.) - The
typing.final{.interpreted-text role="func"} decorator now sets the__final__attributed on the decorated object. (Contributed by Jelle Zijlstra in90500{.interpreted-text role="gh"}.) - The
typing.get_overloads{.interpreted-text role="func"} function can be used for introspecting the overloads of a function.typing.clear_overloads{.interpreted-text role="func"} can be used to clear all registered overloads of a function. (Contributed by Jelle Zijlstra in89263{.interpreted-text role="gh"}.) - The
~object.__init__{.interpreted-text role="meth"} method of~typing.Protocol{.interpreted-text role="class"} subclasses is now preserved. (Contributed by Adrian Garcia Badarasco in88970{.interpreted-text role="gh"}.) - 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 in91137{.interpreted-text role="gh"}.) - Loosen runtime requirements for type annotations by removing the callable check in the private
typing._type_checkfunction. (Contributed by Gregory Beauregard in90802{.interpreted-text role="gh"}.) typing.get_type_hints{.interpreted-text role="func"} now supports evaluating strings as forward references inPEP 585 generic aliases <types-genericalias>{.interpreted-text role="ref"}. (Contributed by Niklas Rosenstein in85542{.interpreted-text role="gh"}.)typing.get_type_hints{.interpreted-text role="func"} no longer adds~typing.Optional{.interpreted-text role="data"} to parameters withNoneas a default. (Contributed by Nikita Sobolev in90353{.interpreted-text role="gh"}.)typing.get_type_hints{.interpreted-text role="func"} now supports evaluating bare stringified~typing.ClassVar{.interpreted-text role="data"} annotations. (Contributed by Gregory Beauregard in90711{.interpreted-text role="gh"}.)typing.no_type_check{.interpreted-text role="func"} no longer modifies external classes and functions. It also now correctly marks classmethods as not to be type checked. (Contributed by Nikita Sobolev in90729{.interpreted-text role="gh"}.)
unicodedata {#whatsnew311-unicodedata}
- The Unicode database has been updated to version 14.0.0. (Contributed by Benjamin Peterson in
45190{.interpreted-text role="issue"}).
unittest {#whatsnew311-unittest}
- Added methods
~unittest.TestCase.enterContext{.interpreted-text role="meth"} and~unittest.TestCase.enterClassContext{.interpreted-text role="meth"} of class~unittest.TestCase{.interpreted-text role="class"}, method~unittest.IsolatedAsyncioTestCase.enterAsyncContext{.interpreted-text role="meth"} of class~unittest.IsolatedAsyncioTestCase{.interpreted-text role="class"} and functionunittest.enterModuleContext{.interpreted-text role="func"}. (Contributed by Serhiy Storchaka in45046{.interpreted-text role="issue"}.)
venv {#whatsnew311-venv}
- When new Python virtual environments are created, the venv
sysconfig installation scheme <installation_paths>{.interpreted-text role="ref"} 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 in45413{.interpreted-text role="issue"}.)
warnings {#whatsnew311-warnings}
warnings.catch_warnings{.interpreted-text role="func"} now accepts arguments forwarnings.simplefilter{.interpreted-text role="func"}, providing a more concise way to locally ignore warnings or convert them to errors. (Contributed by Zac Hatfield-Dodds in47074{.interpreted-text role="issue"}.)
zipfile {#whatsnew311-zipfile}
- Added support for specifying member name encoding for reading metadata in a
~zipfile.ZipFile{.interpreted-text role="class"}'s directory and file headers. (Contributed by Stephen J. Turnbull and Serhiy Storchaka in28080{.interpreted-text role="issue"}.) - Added
ZipFile.mkdir() <zipfile.ZipFile.mkdir>{.interpreted-text role="meth"} for creating new directories inside ZIP archives. (Contributed by Sam Ezeh in49083{.interpreted-text role="gh"}.) - Added
~zipfile.Path.stem{.interpreted-text role="attr"},~zipfile.Path.suffix{.interpreted-text role="attr"} and~zipfile.Path.suffixes{.interpreted-text role="attr"} tozipfile.Path{.interpreted-text role="class"}. (Contributed by Miguel Brito in88261{.interpreted-text role="gh"}.)
Optimizations {#whatsnew311-optimizations}
This section covers specific optimizations independent of the whatsnew311-faster-cpython{.interpreted-text role="ref"} project, which is covered in its own section.
- The compiler now optimizes simple
printf-style % formatting <old-string-formatting>{.interpreted-text role="ref"} on string literals containing only the format codes%s,%rand%aand makes it as fast as a correspondingf-string{.interpreted-text role="term"} expression. (Contributed by Serhiy Storchaka in28307{.interpreted-text role="issue"}.) - Integer division (
//) is better tuned for optimization by compilers. It is now around 20% faster on x86-64 when dividing anint{.interpreted-text role="class"} by a value smaller than2**30. (Contributed by Gregory P. Smith and Tim Peters in90564{.interpreted-text role="gh"}.) sum{.interpreted-text role="func"} is now nearly 30% faster for integers smaller than2**30. (Contributed by Stefan Behnel in68264{.interpreted-text role="gh"}.)- Resizing lists is streamlined for the common case, speeding up
list.append{.interpreted-text role="meth"} by ≈15% and simplelist comprehension{.interpreted-text role="term"}s by up to 20-30% (Contributed by Dennis Sweeney in91165{.interpreted-text role="gh"}.) - Dictionaries don't store hash values when all keys are Unicode objects, decreasing
dict{.interpreted-text role="class"} size. For example,sys.getsizeof(dict.fromkeys("abcdefg"))is reduced from 352 bytes to 272 bytes (23% smaller) on 64-bit platforms. (Contributed by Inada Naoki in46845{.interpreted-text role="issue"}.) - Using
asyncio.DatagramProtocol{.interpreted-text role="class"} is now orders of magnitude faster when transferring large files over UDP, with speeds over 100 times higher for a ≈60 MiB file. (Contributed by msoxzw in91487{.interpreted-text role="gh"}.) math{.interpreted-text role="mod"} functions~math.comb{.interpreted-text role="func"} and~math.perm{.interpreted-text role="func"} are now ≈10 times faster for large arguments (with a larger speedup for larger k). (Contributed by Serhiy Storchaka in37295{.interpreted-text role="issue"}.)- The
statistics{.interpreted-text role="mod"} functions~statistics.mean{.interpreted-text role="func"},~statistics.variance{.interpreted-text role="func"} and~statistics.stdev{.interpreted-text role="func"} now consume iterators in one pass rather than converting them to alist{.interpreted-text role="class"} first. This is twice as fast and can save substantial memory. (Contributed by Raymond Hettinger in90415{.interpreted-text role="gh"}.) unicodedata.normalize{.interpreted-text role="func"} now normalizes pure-ASCII strings in constant time. (Contributed by Donghee Na in44987{.interpreted-text role="issue"}.)
Faster CPython {#whatsnew311-faster-cpython}
CPython 3.11 is an average of 25% faster than CPython 3.10 as measured with the pyperformance benchmark suite, when compiled with GCC on Ubuntu Linux. Depending on your workload, the overall speedup could be 10-60%.
This project focuses on two major areas in Python: whatsnew311-faster-startup{.interpreted-text role="ref"} and whatsnew311-faster-runtime{.interpreted-text role="ref"}. Optimizations not covered by this project are listed separately under whatsnew311-optimizations{.interpreted-text role="ref"}.
Faster Startup {#whatsnew311-faster-startup}
Frozen imports / Static code objects {#whatsnew311-faster-imports}
Python caches bytecode{.interpreted-text role="term"} in the __pycache__ <tut-pycache>{.interpreted-text role="ref"} directory to speed up module loading.
Previously in 3.10, Python module execution looked like this:
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 codeobjects{.interpreted-text role="ref"} (and bytecode) are statically allocated by the interpreter. This reduces the steps in module execution process to:
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 many issues.)
Faster Runtime {#whatsnew311-faster-runtime}
Cheaper, lazy Python frames {#whatsnew311-lazy-python-frames}
Python frames, holding execution information, are created whenever Python calls a Python function. 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.
Old-style frame objects <frame-objects>{.interpreted-text role="ref"} are now created only when requested by debuggers or by Python introspection functions such as sys._getframe{.interpreted-text role="func"} and inspect.currentframe{.interpreted-text role="func"}. 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.
(Contributed by Mark Shannon in 44590{.interpreted-text role="issue"}.)
Inlined Python function calls[]{#inline-calls} {#whatsnew311-inline-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, speeding them up. In simple recursive functions like fibonacci or factorial, we observed a 1.7x speedup. This also means recursive functions can recurse significantly deeper (if the user increases the recursion limit with sys.setrecursionlimit{.interpreted-text role="func"}). We measured a 1-3% improvement in pyperformance.
(Contributed by Pablo Galindo and Mark Shannon in 45256{.interpreted-text role="issue"}.)
PEP 659: Specializing Adaptive Interpreter {#whatsnew311-pep659}
659{.interpreted-text role="pep"} 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{.interpreted-text role="term"}.
The specializer will also combine certain common instruction pairs into one superinstruction, reducing the overhead during execution.
Python will only specialize when it sees code that is "hot" (executed multiple times). This prevents Python from wasting time on 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, allowing specialization to adapt to new circumstances.
(PEP written by Mark Shannon, with ideas inspired by Stefan Brunthaler. See 659{.interpreted-text role="pep"} for more information. Implementation by Mark Shannon and Brandt Bucher, with additional help from Irit Katriel and Dennis Sweeney.)
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Operation | Form | Specialization | Operation speedup (up to) | Contributor(s) |
+=======================+==============+=============================================================================================================================================================================================================================================+===========================+=========================================================+
| Binary operations | x + x | Binary add, multiply and subtract for common types such as int{.interpreted-text role="class"}, float{.interpreted-text role="class"} and str{.interpreted-text role="class"} take custom fast paths for their underlying types. | 10% | Mark Shannon, Donghee Na, Brandt Bucher, Dennis Sweeney |
| | | | | |
| | x - x | | | |
| | | | | |
| | x * x | | | |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Subscript | a[i] | Subscripting container types such as list{.interpreted-text role="class"}, tuple{.interpreted-text role="class"} and dict{.interpreted-text role="class"} directly index the underlying data structures. | 10-25% | Irit Katriel, Mark Shannon |
| | | | | |
| | | Subscripting custom ~object.__getitem__{.interpreted-text role="meth"} is also inlined similar to inline-calls{.interpreted-text role="ref"}. | | |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Store subscript | a[i] = z | Similar to subscripting specialization above. | 10-25% | Dennis Sweeney |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Calls | f(arg) | Calls to common builtin (C) functions and types such as len{.interpreted-text role="func"} and str{.interpreted-text role="class"} directly call their underlying C version. This avoids going through the internal calling convention. | 20% | Mark Shannon, Ken Jin |
| | | | | |
| | C(arg) | | | |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Load global variable | print | The object's index in the globals/builtins namespace is cached. Loading globals and builtins require zero namespace lookups. | [^1] | Mark Shannon |
| | | | | |
| | len | | | |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Load attribute | o.attr | Similar to loading global variables. The attribute's index inside the class/object's namespace is cached. In most cases, attribute loading will require zero namespace lookups. | [^2] | Mark Shannon |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Load methods for call | o.meth() | The actual address of the method is cached. Method loading now has no namespace lookups -- even for classes with long inheritance chains. | 10-20% | Ken Jin, Mark Shannon |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Store attribute | o.attr = z | Similar to load attribute optimization. | 2% in pyperformance | Mark Shannon |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
| Unpack Sequence | *seq | Specialized for common containers such as list{.interpreted-text role="class"} and tuple{.interpreted-text role="class"}. Avoids internal calling convention. | 8% | Brandt Bucher |
+-----------------------+--------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------+---------------------------------------------------------+
Misc {#whatsnew311-faster-cpython-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
45340{.interpreted-text role="issue"} and40116{.interpreted-text role="issue"}.) - "Zero-cost" exceptions are implemented, eliminating the cost of
try{.interpreted-text role="keyword"} statements when no exception is raised. (Contributed by Mark Shannon in40222{.interpreted-text role="issue"}.) - 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
45711{.interpreted-text role="issue"}.) re{.interpreted-text role="mod"}'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 up to 10% faster than Python 3.10. (Contributed by Brandt Bucher in91404{.interpreted-text role="gh"}.)
FAQ {#whatsnew311-faster-cpython-faq}
How should I write my code to utilize these speedups? {#faster-cpython-faq-my-code}
Write Pythonic code that follows common best practices; you don't have to change your code. The Faster CPython project optimizes for common code patterns we observe.
Will CPython 3.11 use more memory? {#faster-cpython-faq-memory}
Maybe not; we don't expect memory use to exceed 20% higher than 3.10. This is offset by memory optimizations for frame objects and object dictionaries as mentioned above.
I don't see any speedups in my workload. Why? {#faster-cpython-ymmv}
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 speedups. 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!
Is there a JIT compiler? {#faster-cpython-jit}
No. We're still exploring other optimizations.
About {#whatsnew311-faster-cpython-about}
Faster CPython explores optimizations for CPython{.interpreted-text role="term"}. 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.
CPython bytecode changes {#whatsnew311-bytecode-changes}
The bytecode now contains inline cache entries, which take the form of the newly-added CACHE{.interpreted-text role="opcode"} 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.
New opcodes {#whatsnew311-added-opcodes}
!ASYNC_GEN_WRAP{.interpreted-text role="opcode"},RETURN_GENERATOR{.interpreted-text role="opcode"} andSEND{.interpreted-text role="opcode"}, used in generators and co-routines.COPY_FREE_VARS{.interpreted-text role="opcode"}, which avoids needing special caller-side code for closures.JUMP_BACKWARD_NO_INTERRUPT{.interpreted-text role="opcode"}, for use in certain loops where handling interrupts is undesirable.MAKE_CELL{.interpreted-text role="opcode"}, to createcell-objects{.interpreted-text role="ref"}.CHECK_EG_MATCH{.interpreted-text role="opcode"} and!PREP_RERAISE_STAR{.interpreted-text role="opcode"}, to handle thenew exception groups and except* <whatsnew311-pep654>{.interpreted-text role="ref"} added in654{.interpreted-text role="pep"}.PUSH_EXC_INFO{.interpreted-text role="opcode"}, for use in exception handlers.RESUME{.interpreted-text role="opcode"}, a no-op, for internal tracing, debugging and optimization checks.
Replaced opcodes {#whatsnew311-replaced-opcodes}
+-------------------------------------------------------------+--------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| Replaced Opcode(s) | New Opcode(s) | Notes |
+=============================================================+==============================================================+===================================================================================================================+
| | !BINARY_*{.interpreted-text role="opcode"} | BINARY_OP{.interpreted-text role="opcode"} | Replaced all numeric binary/in-place opcodes with a single opcode |
| | !INPLACE_*{.interpreted-text role="opcode"} | | |
+-------------------------------------------------------------+--------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| | !CALL_FUNCTION{.interpreted-text role="opcode"} | | CALL{.interpreted-text role="opcode"} | Decouples argument shifting for methods from handling of keyword arguments; allows better specialization of calls |
| | !CALL_FUNCTION_KW{.interpreted-text role="opcode"} | | !KW_NAMES{.interpreted-text role="opcode"} | |
| | !CALL_METHOD{.interpreted-text role="opcode"} | | !PRECALL{.interpreted-text role="opcode"} | |
| | | PUSH_NULL{.interpreted-text role="opcode"} | |
+-------------------------------------------------------------+--------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| | !DUP_TOP{.interpreted-text role="opcode"} | | COPY{.interpreted-text role="opcode"} | Stack manipulation instructions |
| | !DUP_TOP_TWO{.interpreted-text role="opcode"} | | SWAP{.interpreted-text role="opcode"} | |
| | !ROT_TWO{.interpreted-text role="opcode"} | | |
| | !ROT_THREE{.interpreted-text role="opcode"} | | |
| | !ROT_FOUR{.interpreted-text role="opcode"} | | |
| | !ROT_N{.interpreted-text role="opcode"} | | |
+-------------------------------------------------------------+--------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| | !JUMP_IF_NOT_EXC_MATCH{.interpreted-text role="opcode"} | | CHECK_EXC_MATCH{.interpreted-text role="opcode"} | Now performs check but doesn't jump |
+-------------------------------------------------------------+--------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| | !JUMP_ABSOLUTE{.interpreted-text role="opcode"} | | JUMP_BACKWARD{.interpreted-text role="opcode"} | See[^3]; TRUE, FALSE, NONE and NOT_NONE variants for each direction |
| | !POP_JUMP_IF_FALSE{.interpreted-text role="opcode"} | | !POP_JUMP_BACKWARD_IF_*{.interpreted-text role="opcode"} | |
| | !POP_JUMP_IF_TRUE{.interpreted-text role="opcode"} | | !POP_JUMP_FORWARD_IF_*{.interpreted-text role="opcode"} | |
+-------------------------------------------------------------+--------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+
| | !SETUP_WITH{.interpreted-text role="opcode"} | !BEFORE_WITH{.interpreted-text role="opcode"} | with{.interpreted-text role="keyword"} block setup |
| | !SETUP_ASYNC_WITH{.interpreted-text role="opcode"} | | |
+-------------------------------------------------------------+--------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------+
Changed/removed opcodes[]{#whatsnew311-removed-opcodes}[]{#whatsnew311-changed-opcodes} {#whatsnew311-changed-removed-opcodes}
- Changed
MATCH_CLASS{.interpreted-text role="opcode"} andMATCH_KEYS{.interpreted-text role="opcode"} to no longer push an additional boolean value to indicate success/failure. Instead,Noneis pushed on failure in place of the tuple of extracted values. - Changed opcodes that work with exceptions to reflect them now being represented as one item on the stack instead of three (see
89874{.interpreted-text role="gh"}). - Removed
!COPY_DICT_WITHOUT_KEYS{.interpreted-text role="opcode"},!GEN_START{.interpreted-text role="opcode"},!POP_BLOCK{.interpreted-text role="opcode"},!SETUP_FINALLY{.interpreted-text role="opcode"} and!YIELD_FROM{.interpreted-text role="opcode"}.
Deprecated[]{#whatsnew311-deprecated} {#whatsnew311-python-api-deprecated}
This section lists Python APIs that have been deprecated in Python 3.11.
Deprecated C APIs are listed separately <whatsnew311-c-api-deprecated>{.interpreted-text role="ref"}.
Language/Builtins[]{#whatsnew311-deprecated-language} {#whatsnew311-deprecated-builtins}
- Chaining
classmethod{.interpreted-text role="class"} descriptors (introduced in19072{.interpreted-text role="issue"}) is now deprecated. It can no longer be used to wrap other descriptors such asproperty{.interpreted-text role="class"}. The core design of this feature was flawed and caused a number of downstream problems. To "pass-through" aclassmethod{.interpreted-text role="class"}, consider using the!__wrapped__{.interpreted-text role="attr"} attribute that was added in Python 3.10. (Contributed by Raymond Hettinger in89519{.interpreted-text role="gh"}.) - Octal escapes in string and bytes literals with values larger than
0o377(255 in decimal) now produce aDeprecationWarning{.interpreted-text role="exc"}. In a future Python version, they will raise aSyntaxWarning{.interpreted-text role="exc"} and eventually aSyntaxError{.interpreted-text role="exc"}. (Contributed by Serhiy Storchaka in81548{.interpreted-text role="gh"}.) - The delegation of
int{.interpreted-text role="func"} to~object.__trunc__{.interpreted-text role="meth"} is now deprecated. Callingint(a)whentype(a)implements!__trunc__{.interpreted-text role="meth"} but not~object.__int__{.interpreted-text role="meth"} or~object.__index__{.interpreted-text role="meth"} now raises aDeprecationWarning{.interpreted-text role="exc"}. (Contributed by Zackery Spytz in44977{.interpreted-text role="issue"}.)
Modules {#whatsnew311-deprecated-modules}
::: {#whatsnew311-pep594}
594{.interpreted-text role="pep"} led to the deprecations of the following modules slated for removal in Python 3.13:
!aifc{.interpreted-text role="mod"}!chunk{.interpreted-text role="mod"}!msilib{.interpreted-text role="mod"}!pipes{.interpreted-text role="mod"}!telnetlib{.interpreted-text role="mod"}!audioop{.interpreted-text role="mod"}!crypt{.interpreted-text role="mod"}!nis{.interpreted-text role="mod"}!sndhdr{.interpreted-text role="mod"}!uu{.interpreted-text role="mod"}!cgi{.interpreted-text role="mod"}!imghdr{.interpreted-text role="mod"}!nntplib{.interpreted-text role="mod"}!spwd{.interpreted-text role="mod"}!xdrlib{.interpreted-text role="mod"}!cgitb{.interpreted-text role="mod"}!mailcap{.interpreted-text role="mod"}!ossaudiodev{.interpreted-text role="mod"}!sunau{.interpreted-text role="mod"}
(Contributed by Brett Cannon in
47061{.interpreted-text role="issue"} and Victor Stinner in68966{.interpreted-text role="gh"}.)The
!asynchat{.interpreted-text role="mod"},!asyncore{.interpreted-text role="mod"} and!smtpd{.interpreted-text role="mod"} modules have been deprecated since at least Python 3.6. Their documentation and deprecation warnings have now been updated to note they will be removed in Python 3.12. (Contributed by Hugo van Kemenade in47022{.interpreted-text role="issue"}.)The
!lib2to3{.interpreted-text role="mod"} package and2to3tool are now deprecated and may not be able to parse Python 3.10 or newer. See617{.interpreted-text role="pep"}, introducing the new PEG parser, for details. (Contributed by Victor Stinner in40360{.interpreted-text role="issue"}.)Undocumented modules
!sre_compile{.interpreted-text role="mod"},!sre_constants{.interpreted-text role="mod"} and!sre_parse{.interpreted-text role="mod"} are now deprecated. (Contributed by Serhiy Storchaka in47152{.interpreted-text role="issue"}.) :::
Standard Library {#whatsnew311-deprecated-stdlib}
The following have been deprecated in
configparser{.interpreted-text role="mod"} since Python 3.2. Their deprecation warnings have now been updated to note they will be removed in Python 3.12:- the
!configparser.SafeConfigParser{.interpreted-text role="class"} class - the
!configparser.ParsingError.filename{.interpreted-text role="attr"} property - the
!configparser.RawConfigParser.readfp{.interpreted-text role="meth"} method
(Contributed by Hugo van Kemenade in
45173{.interpreted-text role="issue"}.)- the
!configparser.LegacyInterpolation{.interpreted-text role="class"} has been deprecated in the docstring since Python 3.2, and is not listed in theconfigparser{.interpreted-text role="mod"} documentation. It now emits aDeprecationWarning{.interpreted-text role="exc"} and will be removed in Python 3.13. Useconfigparser.BasicInterpolation{.interpreted-text role="class"} orconfigparser.ExtendedInterpolation{.interpreted-text role="class"} instead. (Contributed by Hugo van Kemenade in46607{.interpreted-text role="issue"}.)The older set of
importlib.resources{.interpreted-text role="mod"} functions were deprecated in favor of the replacements added in Python 3.9 and will be removed in a future Python version, due to not supporting resources located within package subdirectories:!importlib.resources.contents{.interpreted-text role="func"}!importlib.resources.is_resource{.interpreted-text role="func"}!importlib.resources.open_binary{.interpreted-text role="func"}!importlib.resources.open_text{.interpreted-text role="func"}!importlib.resources.read_binary{.interpreted-text role="func"}!importlib.resources.read_text{.interpreted-text role="func"}!importlib.resources.path{.interpreted-text role="func"}
The
locale.getdefaultlocale{.interpreted-text role="func"} function is deprecated and will be removed in Python 3.15. Uselocale.setlocale{.interpreted-text role="func"},locale.getpreferredencoding(False) <locale.getpreferredencoding>{.interpreted-text role="func"} andlocale.getlocale{.interpreted-text role="func"} functions instead. (Contributed by Victor Stinner in90817{.interpreted-text role="gh"}.)The
!locale.resetlocale{.interpreted-text role="func"} function is deprecated and will be removed in Python 3.13. Uselocale.setlocale(locale.LC_ALL, "")instead. (Contributed by Victor Stinner in90817{.interpreted-text role="gh"}.)Stricter rules will now be applied for numerical group references and group names in
regular expressions <re-syntax>{.interpreted-text role="ref"}. Only sequences of ASCII digits will now be accepted as a numerical reference, and the group name inbytes{.interpreted-text role="class"} patterns and replacement strings can only contain ASCII letters, digits and underscores. For now, a deprecation warning is raised for syntax violating these rules. (Contributed by Serhiy Storchaka in91760{.interpreted-text role="gh"}.)In the
re{.interpreted-text role="mod"} module, the!re.template{.interpreted-text role="func"} function and the corresponding!re.TEMPLATE{.interpreted-text role="const"} and!re.T{.interpreted-text role="const"} 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 in92728{.interpreted-text role="gh"}.)!turtle.settiltangle{.interpreted-text role="func"} has been deprecated since Python 3.1; it now emits a deprecation warning and will be removed in Python 3.13. Useturtle.tiltangle{.interpreted-text role="func"} instead (it was earlier incorrectly marked as deprecated, and its docstring is now corrected). (Contributed by Hugo van Kemenade in45837{.interpreted-text role="issue"}.)typing.Text{.interpreted-text role="class"}, 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 usestr{.interpreted-text role="class"} instead wherever possible. (Contributed by Alex Waygood in92332{.interpreted-text role="gh"}.)The keyword argument syntax for constructing
typing.TypedDict{.interpreted-text role="data"} types is now deprecated. Support will be removed in Python 3.13. (Contributed by Jingchen Ye in90224{.interpreted-text role="gh"}.)!webbrowser.MacOSX{.interpreted-text role="class"} is deprecated and will be removed in Python 3.13. It is untested, undocumented, and not used bywebbrowser{.interpreted-text role="mod"} itself. (Contributed by Donghee Na in42255{.interpreted-text role="issue"}.)The behavior of returning a value from a
~unittest.TestCase{.interpreted-text role="class"} and~unittest.IsolatedAsyncioTestCase{.interpreted-text role="class"} test methods (other than the defaultNonevalue) is now deprecated.Deprecated the following not-formally-documented
unittest{.interpreted-text role="mod"} functions, scheduled for removal in Python 3.13:!unittest.findTestCases{.interpreted-text role="func"}!unittest.makeSuite{.interpreted-text role="func"}!unittest.getTestCaseNames{.interpreted-text role="func"}
Use
~unittest.TestLoader{.interpreted-text role="class"} methods instead:unittest.TestLoader.loadTestsFromModule{.interpreted-text role="meth"}unittest.TestLoader.loadTestsFromTestCase{.interpreted-text role="meth"}unittest.TestLoader.getTestCaseNames{.interpreted-text role="meth"}
(Contributed by Erlend E. Aasland in
5846{.interpreted-text role="issue"}.)!unittest.TestProgram.usageExit{.interpreted-text role="meth"} is marked deprecated, to be removed in 3.13. (Contributed by Carlos Damázio in67048{.interpreted-text role="gh"}.)
Pending Removal in Python 3.12[]{#whatsnew311-pending-removal} {#whatsnew311-python-api-pending-removal}
The following Python APIs have been deprecated in earlier Python releases, and will be removed in Python 3.12.
C APIs pending removal are listed separately <whatsnew311-c-api-pending-removal>{.interpreted-text role="ref"}.
The
!asynchat{.interpreted-text role="mod"} moduleThe
!asyncore{.interpreted-text role="mod"} moduleThe
entire distutils package <distutils-deprecated>{.interpreted-text role="ref"}The
!imp{.interpreted-text role="mod"} moduleThe
typing.io <typing.IO>{.interpreted-text role="class"} namespaceThe
typing.re <typing.Pattern>{.interpreted-text role="class"} namespace!cgi.log{.interpreted-text role="func"}!importlib.find_loader{.interpreted-text role="func"}!importlib.abc.Loader.module_repr{.interpreted-text role="meth"}!importlib.abc.MetaPathFinder.find_module{.interpreted-text role="meth"}!importlib.abc.PathEntryFinder.find_loader{.interpreted-text role="meth"}!importlib.abc.PathEntryFinder.find_module{.interpreted-text role="meth"}!importlib.machinery.BuiltinImporter.find_module{.interpreted-text role="meth"}!importlib.machinery.BuiltinLoader.module_repr{.interpreted-text role="meth"}!importlib.machinery.FileFinder.find_loader{.interpreted-text role="meth"}!importlib.machinery.FileFinder.find_module{.interpreted-text role="meth"}!importlib.machinery.FrozenImporter.find_module{.interpreted-text role="meth"}!importlib.machinery.FrozenLoader.module_repr{.interpreted-text role="meth"}!importlib.machinery.PathFinder.find_module{.interpreted-text role="meth"}!importlib.machinery.WindowsRegistryFinder.find_module{.interpreted-text role="meth"}!importlib.util.module_for_loader{.interpreted-text role="func"}!importlib.util.set_loader_wrapper{.interpreted-text role="func"}!importlib.util.set_package_wrapper{.interpreted-text role="func"}!pkgutil.ImpImporter{.interpreted-text role="class"}!pkgutil.ImpLoader{.interpreted-text role="class"}!pathlib.Path.link_to{.interpreted-text role="meth"}!sqlite3.enable_shared_cache{.interpreted-text role="func"}!sqlite3.OptimizedUnicode{.interpreted-text role="func"}!PYTHONTHREADDEBUG{.interpreted-text role="envvar"} environment variableThe following deprecated aliases in
unittest{.interpreted-text role="mod"}:Deprecated alias Method Name Deprecated in
failUnless.assertTrue{.interpreted-text role="meth"} 3.1failIf.assertFalse{.interpreted-text role="meth"} 3.1failUnlessEqual.assertEqual{.interpreted-text role="meth"} 3.1failIfEqual.assertNotEqual{.interpreted-text role="meth"} 3.1failUnlessAlmostEqual.assertAlmostEqual{.interpreted-text role="meth"} 3.1failIfAlmostEqual.assertNotAlmostEqual{.interpreted-text role="meth"} 3.1failUnlessRaises.assertRaises{.interpreted-text role="meth"} 3.1assert_.assertTrue{.interpreted-text role="meth"} 3.2assertEquals.assertEqual{.interpreted-text role="meth"} 3.2assertNotEquals.assertNotEqual{.interpreted-text role="meth"} 3.2assertAlmostEquals.assertAlmostEqual{.interpreted-text role="meth"} 3.2assertNotAlmostEquals.assertNotAlmostEqual{.interpreted-text role="meth"} 3.2assertRegexpMatches.assertRegex{.interpreted-text role="meth"} 3.2assertRaisesRegexp.assertRaisesRegex{.interpreted-text role="meth"} 3.2assertNotRegexpMatches.assertNotRegex{.interpreted-text role="meth"} 3.5
Removed[]{#whatsnew311-removed} {#whatsnew311-python-api-removed}
This section lists Python APIs that have been removed in Python 3.11.
Removed C APIs are listed separately <whatsnew311-c-api-removed>{.interpreted-text role="ref"}.
Removed the
!@asyncio.coroutine{.interpreted-text role="func"}decorator{.interpreted-text role="term"} enabling legacy generator-based coroutines to be compatible withasync{.interpreted-text role="keyword"} /await{.interpreted-text role="keyword"} code. The function has been deprecated since Python 3.8 and the removal was initially scheduled for Python 3.10. Useasync def{.interpreted-text role="keyword"} instead. (Contributed by Illia Volochii in43216{.interpreted-text role="issue"}.)Removed
!asyncio.coroutines.CoroWrapper{.interpreted-text role="class"} used for wrapping legacy generator-based coroutine objects in the debug mode. (Contributed by Illia Volochii in43216{.interpreted-text role="issue"}.)Due to significant security concerns, the reuse_address parameter of
asyncio.loop.create_datagram_endpoint{.interpreted-text role="meth"}, disabled in Python 3.9, is now entirely removed. This is because of the behavior of the socket optionSO_REUSEADDRin UDP. (Contributed by Hugo van Kemenade in45129{.interpreted-text role="issue"}.)Removed the
!binhex{.interpreted-text role="mod"} module, deprecated in Python 3.9. Also removed the related, similarly-deprecatedbinascii{.interpreted-text role="mod"} functions:!binascii.a2b_hqx{.interpreted-text role="func"}!binascii.b2a_hqx{.interpreted-text role="func"}!binascii.rlecode_hqx{.interpreted-text role="func"}!binascii.rldecode_hqx{.interpreted-text role="func"}
The
binascii.crc_hqx{.interpreted-text role="func"} function remains available.(Contributed by Victor Stinner in
45085{.interpreted-text role="issue"}.)Removed the
!distutils{.interpreted-text role="mod"}bdist_msicommand deprecated in Python 3.9. Usebdist_wheel(wheel packages) instead. (Contributed by Hugo van Kemenade in45124{.interpreted-text role="issue"}.)Removed the
~object.__getitem__{.interpreted-text role="meth"} methods ofxml.dom.pulldom.DOMEventStream{.interpreted-text role="class"},wsgiref.util.FileWrapper{.interpreted-text role="class"} andfileinput.FileInput{.interpreted-text role="class"}, deprecated since Python 3.9. (Contributed by Hugo van Kemenade in45132{.interpreted-text role="issue"}.)Removed the deprecated
gettext{.interpreted-text role="mod"} functions!lgettext{.interpreted-text role="func"},!ldgettext{.interpreted-text role="func"},!lngettext{.interpreted-text role="func"} and!ldngettext{.interpreted-text role="func"}. Also removed the!bind_textdomain_codeset{.interpreted-text role="func"} function, the!NullTranslations.output_charset{.interpreted-text role="meth"} and!NullTranslations.set_output_charset{.interpreted-text role="meth"} methods, and the codeset parameter of!translation{.interpreted-text role="func"} and!install{.interpreted-text role="func"}, since they are only used for the!l*gettext{.interpreted-text role="func"} functions. (Contributed by Donghee Na and Serhiy Storchaka in44235{.interpreted-text role="issue"}.)Removed from the
inspect{.interpreted-text role="mod"} module:- The
!getargspec{.interpreted-text role="func"} function, deprecated since Python 3.0; useinspect.signature{.interpreted-text role="func"} orinspect.getfullargspec{.interpreted-text role="func"} instead. - The
!formatargspec{.interpreted-text role="func"} function, deprecated since Python 3.5; use theinspect.signature{.interpreted-text role="func"} function or theinspect.Signature{.interpreted-text role="class"} object directly. - The undocumented
!Signature.from_builtin{.interpreted-text role="meth"} and!Signature.from_function{.interpreted-text role="meth"} methods, deprecated since Python 3.5; use theSignature.from_callable() <inspect.Signature.from_callable>{.interpreted-text role="meth"} method instead.
(Contributed by Hugo van Kemenade in
45320{.interpreted-text role="issue"}.)- The
Removed the
~object.__class_getitem__{.interpreted-text role="meth"} method frompathlib.PurePath{.interpreted-text role="class"}, because it was not used and added by mistake in previous versions. (Contributed by Nikita Sobolev in46483{.interpreted-text role="issue"}.)Removed the
!MailmanProxy{.interpreted-text role="class"} class in the!smtpd{.interpreted-text role="mod"} module, as it is unusable without the external!mailman{.interpreted-text role="mod"} package. (Contributed by Donghee Na in35800{.interpreted-text role="issue"}.)Removed the deprecated
!split{.interpreted-text role="meth"} method of!_tkinter.TkappType{.interpreted-text role="class"}. (Contributed by Erlend E. Aasland in38371{.interpreted-text role="issue"}.)Removed namespace package support from
unittest{.interpreted-text role="mod"} discovery. It was introduced in Python 3.4 but has been broken since Python 3.7. (Contributed by Inada Naoki in23882{.interpreted-text role="issue"}.)Removed the undocumented private
!float.__set_format__{.interpreted-text role="meth"} method, previously known as!float.__setformat__{.interpreted-text role="meth"} 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 in46852{.interpreted-text role="issue"}.)The
!--experimental-isolated-subinterpreters{.interpreted-text role="option"} configure flag (and corresponding!EXPERIMENTAL_ISOLATED_SUBINTERPRETERS{.interpreted-text role="c:macro"} macro) have been removed.Pynche{.interpreted-text role="pypi"} --- The Pythonically Natural Color and Hue Editor --- has been moved out ofTools/scriptsand is being developed independently from the Python source tree.
Porting to Python 3.11[]{#whatsnew311-porting} {#whatsnew311-python-api-porting}
This section lists previously described changes and other bugfixes in the Python API that may require changes to your Python code.
Porting notes for the C API are listed separately <whatsnew311-c-api-porting>{.interpreted-text role="ref"}.
open{.interpreted-text role="func"},io.open{.interpreted-text role="func"},codecs.open{.interpreted-text role="func"} andfileinput.FileInput{.interpreted-text role="class"} no longer accept'U'("universal newline") in the file mode. In Python 3, "universal newline" mode is used by default whenever a file is opened in text mode, and the'U'flag has been deprecated since Python 3.3. Thenewline parameter <open-newline-parameter>{.interpreted-text role="ref"} to these functions controls how universal newlines work. (Contributed by Victor Stinner in37330{.interpreted-text role="issue"}.)ast.AST{.interpreted-text role="class"} node positions are now validated when provided tocompile{.interpreted-text role="func"} and other related functions. If invalid positions are detected, aValueError{.interpreted-text role="exc"} will be raised. (Contributed by Pablo Galindo in93351{.interpreted-text role="gh"})- Prohibited passing non-
concurrent.futures.ThreadPoolExecutor{.interpreted-text role="class"} executors toasyncio.loop.set_default_executor{.interpreted-text role="meth"} following a deprecation in Python 3.8. (Contributed by Illia Volochii in43234{.interpreted-text role="issue"}.) calendar{.interpreted-text role="mod"}: Thecalendar.LocaleTextCalendar{.interpreted-text role="class"} andcalendar.LocaleHTMLCalendar{.interpreted-text role="class"} classes now uselocale.getlocale{.interpreted-text role="func"}, instead of usinglocale.getdefaultlocale{.interpreted-text role="func"}, if no locale is specified. (Contributed by Victor Stinner in46659{.interpreted-text role="issue"}.)- The
pdb{.interpreted-text role="mod"} module now reads the.pdbrc{.interpreted-text role="file"} configuration file with the'UTF-8'encoding. (Contributed by Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) in41137{.interpreted-text role="issue"}.) - The population parameter of
random.sample{.interpreted-text role="func"} must be a sequence, and automatic conversion ofset{.interpreted-text role="class"}s tolist{.interpreted-text role="class"}s is no longer supported. Also, if the sample size is larger than the population size, aValueError{.interpreted-text role="exc"} is raised. (Contributed by Raymond Hettinger in40465{.interpreted-text role="issue"}.) - The random optional parameter of
random.shuffle{.interpreted-text role="func"} was removed. It was previously an arbitrary random function to use for the shuffle; now,random.random{.interpreted-text role="func"} (its previous default) will always be used. - In
re{.interpreted-text role="mod"}re-syntax{.interpreted-text role="ref"}, global inline flags (e.g.(?i)) can now only be used at the start of regular expressions. Using them elsewhere has been deprecated since Python 3.6. (Contributed by Serhiy Storchaka in47066{.interpreted-text role="issue"}.) - In the
re{.interpreted-text role="mod"} module, several long-standing bugs where fixed that, in rare cases, could cause capture groups to get the wrong result. Therefore, this could change the captured output in these cases. (Contributed by Ma Lin in35859{.interpreted-text role="issue"}.)
Build Changes {#whatsnew311-build-changes}
CPython now has
11{.interpreted-text role="pep"}Tier 3 support <11#tier-3>{.interpreted-text role="pep"} for cross compiling to the WebAssembly platforms Emscripten (wasm32-unknown-emscripten, i.e. Python in the browser) and WebAssembly System Interface (WASI) (wasm32-unknown-wasi). The effort is inspired by previous work like Pyodide. These platforms provide 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. (Emscripten contributed by Christian Heimes and Ethan Smith in84461{.interpreted-text role="gh"} and WASI contributed by Christian Heimes in90473{.interpreted-text role="gh"}; platforms promoted in95085{.interpreted-text role="gh"})Building CPython now requires:
- A C11 compiler and standard library. Optional C11 features are not required. (Contributed by Victor Stinner in
46656{.interpreted-text role="issue"},45440{.interpreted-text role="issue"} and46640{.interpreted-text role="issue"}.) - Support for IEEE 754 floating-point numbers. (Contributed by Victor Stinner in
46917{.interpreted-text role="issue"}.)
- A C11 compiler and standard library. Optional C11 features are not required. (Contributed by Victor Stinner in
The
!Py_NO_NAN{.interpreted-text role="c:macro"} macro has been removed. Since CPython now requires IEEE 754 floats, NaN values are always available. (Contributed by Victor Stinner in46656{.interpreted-text role="issue"}.)The
tkinter{.interpreted-text role="mod"} package now requires Tcl/Tk version 8.5.12 or newer. (Contributed by Serhiy Storchaka in46996{.interpreted-text role="issue"}.)Build dependencies, compiler flags, and linker flags for most stdlib extension modules are now detected by
configure{.interpreted-text role="program"}. libffi, libnsl, libsqlite3, zlib, bzip2, liblzma, libcrypt, Tcl/Tk, and uuid flags are detected by pkg-config (when available).tkinter{.interpreted-text role="mod"} now requires a pkg-config command to detect development settings for Tcl/Tk headers and libraries. (Contributed by Christian Heimes and Erlend Egeberg Aasland in45847{.interpreted-text role="issue"},45747{.interpreted-text role="issue"}, and45763{.interpreted-text role="issue"}.)libpython is no longer linked against libcrypt. (Contributed by Mike Gilbert in
45433{.interpreted-text role="issue"}.)CPython can now be built with the ThinLTO option via passing
thinto--with-lto{.interpreted-text role="option"}, i.e.--with-lto=thin. (Contributed by Donghee Na and Brett Holman in44340{.interpreted-text role="issue"}.)Freelists for object structs can now be disabled. A new
configure{.interpreted-text role="program"} option--without-freelistscan be used to disable all freelists except empty tuple singleton. (Contributed by Christian Heimes in45522{.interpreted-text role="issue"}.)Modules/SetupandModules/makesetuphave been improved and tied up. Extension modules can now be built throughmakesetup. All except some test modules can be linked statically into a main binary or library. (Contributed by Brett Cannon and Christian Heimes in45548{.interpreted-text role="issue"},45570{.interpreted-text role="issue"},45571{.interpreted-text role="issue"}, and43974{.interpreted-text role="issue"}.):::: note ::: title Note :::
Use the environment variables
!TCLTK_CFLAGS{.interpreted-text role="envvar"} and!TCLTK_LIBS{.interpreted-text role="envvar"} to manually specify the location of Tcl/Tk headers and libraries. Theconfigure{.interpreted-text role="program"} options!--with-tcltk-includes{.interpreted-text role="option"} and!--with-tcltk-libs{.interpreted-text role="option"} have been removed.On RHEL 7 and CentOS 7 the development packages do not provide
tcl.pcandtk.pc; useTCLTK_LIBS="-ltk8.5 -ltkstub8.5 -ltcl8.5". The directoryMisc/rhel7contains.pcfiles and instructions on how to build Python with RHEL 7's and CentOS 7's Tcl/Tk and OpenSSL. ::::CPython will now use 30-bit digits by default for the Python
int{.interpreted-text role="class"} implementation. Previously, the default was to use 30-bit digits on platforms withSIZEOF_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{.interpreted-text role="option"} option to the configure script or (for Windows) thePYLONG_BITS_IN_DIGITvariable inPC/pyconfig.h, but this option may be removed at some point in the future. (Contributed by Mark Dickinson in45569{.interpreted-text role="issue"}.)
C API Changes {#whatsnew311-c-api}
New Features {#whatsnew311-c-api-new-features}
Add a new
PyType_GetName{.interpreted-text role="c:func"} function to get type's short name. (Contributed by Hai Shi in42035{.interpreted-text role="issue"}.)Add a new
PyType_GetQualName{.interpreted-text role="c:func"} function to get type's qualified name. (Contributed by Hai Shi in42035{.interpreted-text role="issue"}.)Add new
PyThreadState_EnterTracing{.interpreted-text role="c:func"} andPyThreadState_LeaveTracing{.interpreted-text role="c:func"} functions to the limited C API to suspend and resume tracing and profiling. (Contributed by Victor Stinner in43760{.interpreted-text role="issue"}.)Added the
Py_Version{.interpreted-text role="c:data"} constant which bears the same value asPY_VERSION_HEX{.interpreted-text role="c:macro"}. (Contributed by Gabriele N. Tornetta in43931{.interpreted-text role="issue"}.)Py_buffer{.interpreted-text role="c:type"} and APIs are now part of the limited API and the stable ABI:PyObject_CheckBuffer{.interpreted-text role="c:func"}PyObject_GetBuffer{.interpreted-text role="c:func"}PyBuffer_GetPointer{.interpreted-text role="c:func"}PyBuffer_SizeFromFormat{.interpreted-text role="c:func"}PyBuffer_ToContiguous{.interpreted-text role="c:func"}PyBuffer_FromContiguous{.interpreted-text role="c:func"}PyObject_CopyData{.interpreted-text role="c:func"}PyBuffer_IsContiguous{.interpreted-text role="c:func"}PyBuffer_FillContiguousStrides{.interpreted-text role="c:func"}PyBuffer_FillInfo{.interpreted-text role="c:func"}PyBuffer_Release{.interpreted-text role="c:func"}PyMemoryView_FromBuffer{.interpreted-text role="c:func"}~PyBufferProcs.bf_getbuffer{.interpreted-text role="c:member"} and~PyBufferProcs.bf_releasebuffer{.interpreted-text role="c:member"} type slots
(Contributed by Christian Heimes in
45459{.interpreted-text role="issue"}.)Added the
PyType_GetModuleByDef{.interpreted-text role="c:func"} function, used to get the module in which a method was defined, in cases where this information is not available directly (viaPyCMethod{.interpreted-text role="c:type"}). (Contributed by Petr Viktorin in46613{.interpreted-text role="issue"}.)Add new functions to pack and unpack C double (serialize and deserialize):
PyFloat_Pack2{.interpreted-text role="c:func"},PyFloat_Pack4{.interpreted-text role="c:func"},PyFloat_Pack8{.interpreted-text role="c:func"},PyFloat_Unpack2{.interpreted-text role="c:func"},PyFloat_Unpack4{.interpreted-text role="c:func"} andPyFloat_Unpack8{.interpreted-text role="c:func"}. (Contributed by Victor Stinner in46906{.interpreted-text role="issue"}.)Add new functions to get frame object attributes:
PyFrame_GetBuiltins{.interpreted-text role="c:func"},PyFrame_GetGenerator{.interpreted-text role="c:func"},PyFrame_GetGlobals{.interpreted-text role="c:func"},PyFrame_GetLasti{.interpreted-text role="c:func"}.Added two new functions to get and set the active exception instance:
PyErr_GetHandledException{.interpreted-text role="c:func"} andPyErr_SetHandledException{.interpreted-text role="c:func"}. These are alternatives toPyErr_SetExcInfo(){.interpreted-text role="c:func"} andPyErr_GetExcInfo(){.interpreted-text role="c:func"} which work with the legacy 3-tuple representation of exceptions. (Contributed by Irit Katriel in46343{.interpreted-text role="issue"}.)Added the
PyConfig.safe_path{.interpreted-text role="c:member"} member. (Contributed by Victor Stinner in57684{.interpreted-text role="gh"}.)
Porting to Python 3.11 {#whatsnew311-c-api-porting}
::: {#whatsnew311-pep670}
Some macros have been converted to static inline functions to avoid macro pitfalls. The change should be mostly transparent to users, as the replacement functions will cast their arguments to the expected types to avoid compiler warnings due to static type checks. However, when the limited C API is set to >=3.11, these casts are not done, and callers will need to cast arguments to their expected types. See
670{.interpreted-text role="pep"} for more details. (Contributed by Victor Stinner and Erlend E. Aasland in89653{.interpreted-text role="gh"}.)PyErr_SetExcInfo(){.interpreted-text role="c:func"} no longer uses thetypeandtracebackarguments, the interpreter now derives those values from the exception instance (thevalueargument). The function still steals references of all three arguments. (Contributed by Irit Katriel in45711{.interpreted-text role="issue"}.)PyErr_GetExcInfo(){.interpreted-text role="c:func"} now derives thetypeandtracebackfields of the result from the exception instance (thevaluefield). (Contributed by Irit Katriel in45711{.interpreted-text role="issue"}.)_frozen{.interpreted-text role="c:struct"} has a newis_packagefield to indicate whether or not the frozen module is a package. Previously, a negative value in thesizefield was the indicator. Now only non-negative values be used forsize. (Contributed by Kumar Aditya in46608{.interpreted-text role="issue"}.)_PyFrameEvalFunction{.interpreted-text role="c:func"} now takes_PyInterpreterFrame*as its second parameter, instead ofPyFrameObject*. See523{.interpreted-text role="pep"} for more details of how to use this function pointer type.!PyCode_New{.interpreted-text role="c:func"} and!PyCode_NewWithPosOnlyArgs{.interpreted-text role="c:func"} now take an additionalexception_tableargument. 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 thereplacemethod.PyCodeObject{.interpreted-text role="c:type"} no longer has theco_code,co_varnames,co_cellvarsandco_freevarsfields. Instead, usePyCode_GetCode{.interpreted-text role="c:func"},PyCode_GetVarnames{.interpreted-text role="c:func"},PyCode_GetCellvars{.interpreted-text role="c:func"} andPyCode_GetFreevars{.interpreted-text role="c:func"} respectively to access them via the C API. (Contributed by Brandt Bucher in46841{.interpreted-text role="issue"} and Ken Jin in92154{.interpreted-text role="gh"} and94936{.interpreted-text role="gh"}.)The old trashcan macros (
Py_TRASHCAN_SAFE_BEGIN/Py_TRASHCAN_SAFE_END) are now deprecated. They should be replaced by the new macrosPy_TRASHCAN_BEGINandPy_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_BEGINhas 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
mypycodebase):#if PY_VERSION_HEX >= 0x03080000 # 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) #endifThe
PyType_Ready{.interpreted-text role="c:func"} function now raises an error if a type is defined with thePy_TPFLAGS_HAVE_GC{.interpreted-text role="c:macro"} flag set but has no traverse function (PyTypeObject.tp_traverse{.interpreted-text role="c:member"}). (Contributed by Victor Stinner in44263{.interpreted-text role="issue"}.)Heap types with the
Py_TPFLAGS_IMMUTABLETYPE{.interpreted-text role="c:macro"} flag can now inherit the590{.interpreted-text role="pep"} vectorcall protocol. Previously, this was only possible forstatic types <static-types>{.interpreted-text role="ref"}. (Contributed by Erlend E. Aasland in43908{.interpreted-text role="issue"})Since
Py_TYPE(){.interpreted-text role="c:func"} is changed to a inline static function,Py_TYPE(obj) = new_typemust be replaced withPy_SET_TYPE(obj, new_type): see thePy_SET_TYPE(){.interpreted-text role="c:func"} 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
39573{.interpreted-text role="issue"}.)Since
Py_SIZE(){.interpreted-text role="c:func"} is changed to a inline static function,Py_SIZE(obj) = new_sizemust be replaced withPy_SET_SIZE(obj, new_size): see thePy_SET_SIZE(){.interpreted-text role="c:func"} 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
39573{.interpreted-text role="issue"}.)<Python.h>no longer includes the header files<stdlib.h>,<stdio.h>,<errno.h>and<string.h>when thePy_LIMITED_APImacro is set to0x030b0000(Python 3.11) or higher. C extensions should explicitly include the header files after#include <Python.h>. (Contributed by Victor Stinner in45434{.interpreted-text role="issue"}.)The non-limited API files
cellobject.h,classobject.h,code.h,context.h,funcobject.h,genobject.handlongintrepr.hhave been moved to theInclude/cpythondirectory. Moreover, theeval.hheader file was removed. These files must not be included directly, as they are already included inPython.h:Include Files <api-includes>{.interpreted-text role="ref"}. If they have been included directly, consider includingPython.hinstead. (Contributed by Victor Stinner in35134{.interpreted-text role="issue"}.)The
!PyUnicode_CHECK_INTERNED{.interpreted-text role="c:func"} 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 in46007{.interpreted-text role="issue"}.)The following frame functions and type are now directly available with
#include <Python.h>, it's no longer needed to add#include <frameobject.h>:PyFrame_Check{.interpreted-text role="c:func"}PyFrame_GetBack{.interpreted-text role="c:func"}PyFrame_GetBuiltins{.interpreted-text role="c:func"}PyFrame_GetGenerator{.interpreted-text role="c:func"}PyFrame_GetGlobals{.interpreted-text role="c:func"}PyFrame_GetLasti{.interpreted-text role="c:func"}PyFrame_GetLocals{.interpreted-text role="c:func"}PyFrame_Type{.interpreted-text role="c:type"}
(Contributed by Victor Stinner in
93937{.interpreted-text role="gh"}.)
:::
::: {#pyframeobject-3.11-hiding}
The
PyFrameObject{.interpreted-text role="c:type"} structure members have been removed from the public C API.While the documentation notes that the
PyFrameObject{.interpreted-text role="c:type"} fields are subject to change at any time, they have been stable for a long time and were used in several popular extensions.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.
PyFrameObject{.interpreted-text role="c:type"} fields:f_back: usePyFrame_GetBack{.interpreted-text role="c:func"}.f_blockstack: removed.f_builtins: usePyFrame_GetBuiltins{.interpreted-text role="c:func"}.f_code: usePyFrame_GetCode{.interpreted-text role="c:func"}.f_gen: usePyFrame_GetGenerator{.interpreted-text role="c:func"}.f_globals: usePyFrame_GetGlobals{.interpreted-text role="c:func"}.f_iblock: removed.f_lasti: usePyFrame_GetLasti{.interpreted-text role="c:func"}. Code usingf_lastiwithPyCode_Addr2Line()should usePyFrame_GetLineNumber{.interpreted-text role="c:func"} instead; it may be faster.f_lineno: usePyFrame_GetLineNumber{.interpreted-text role="c:func"}f_locals: usePyFrame_GetLocals{.interpreted-text role="c:func"}.f_stackdepth: removed.f_state: no public API (renamed tof_frame.f_state).f_trace: no public API.f_trace_lines: usePyObject_GetAttrString((PyObject*)frame, "f_trace_lines").f_trace_opcodes: usePyObject_GetAttrString((PyObject*)frame, "f_trace_opcodes").f_localsplus: no public API (renamed tof_frame.localsplus).f_valuestack: removed.
The Python frame object is now created lazily. A side effect is that the
~frame.f_back{.interpreted-text role="attr"} member must not be accessed directly, since its value is now also computed lazily. ThePyFrame_GetBack{.interpreted-text role="c:func"} function must be called instead.Debuggers that accessed the
~frame.f_locals{.interpreted-text role="attr"} directly must callPyFrame_GetLocals{.interpreted-text role="c:func"} instead. They no longer need to call!PyFrame_FastToLocalsWithError{.interpreted-text role="c:func"} or!PyFrame_LocalsToFast{.interpreted-text role="c:func"}, in fact they should not call those functions. The necessary updating of the frame is now managed by the virtual machine.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; } #endifCode 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; } #endifOr use the pythoncapi_compat project to get these two functions on older Python versions.
Changes of the
PyThreadState{.interpreted-text role="c:type"} structure members:frame: removed, usePyThreadState_GetFrame{.interpreted-text role="c:func"} (function added to Python 3.9 by40429{.interpreted-text role="issue"}). Warning: the function returns astrong reference{.interpreted-text role="term"}, need to callPy_XDECREF{.interpreted-text role="c:func"}.tracing: changed, usePyThreadState_EnterTracing{.interpreted-text role="c:func"} andPyThreadState_LeaveTracing{.interpreted-text role="c:func"} (functions added to Python 3.11 by43760{.interpreted-text role="issue"}).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; } #endifCode defining
PyThreadState_EnterTracing()andPyThreadState_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 } #endifOr use the pythoncapi-compat project to get these functions on old Python functions.
Distributors are encouraged to build Python with the optimized Blake2 library libb2.
The
PyConfig.module_search_paths_set{.interpreted-text role="c:member"} field must now be set to 1 for initialization to usePyConfig.module_search_paths{.interpreted-text role="c:member"} to initializesys.path{.interpreted-text role="data"}. Otherwise, initialization will recalculate the path and replace any values added tomodule_search_paths.PyConfig_Read{.interpreted-text role="c:func"} no longer calculates the initial search path, and will not fill any values intoPyConfig.module_search_paths{.interpreted-text role="c:member"}. To calculate default paths and then modify them, finish initialization and usePySys_GetObject{.interpreted-text role="c:func"} to retrievesys.path{.interpreted-text role="data"} as a Python list object and modify it directly. :::
Deprecated {#whatsnew311-c-api-deprecated}
Deprecate the following functions to configure the Python initialization:
!PySys_AddWarnOptionUnicode{.interpreted-text role="c:func"}!PySys_AddWarnOption{.interpreted-text role="c:func"}!PySys_AddXOption{.interpreted-text role="c:func"}!PySys_HasWarnOptions{.interpreted-text role="c:func"}!PySys_SetArgvEx{.interpreted-text role="c:func"}!PySys_SetArgv{.interpreted-text role="c:func"}!PySys_SetPath{.interpreted-text role="c:func"}!Py_SetPath{.interpreted-text role="c:func"}!Py_SetProgramName{.interpreted-text role="c:func"}!Py_SetPythonHome{.interpreted-text role="c:func"}!Py_SetStandardStreamEncoding{.interpreted-text role="c:func"}!_Py_SetProgramFullPath{.interpreted-text role="c:func"}
Use the new
PyConfig{.interpreted-text role="c:type"} API of thePython Initialization Configuration <init-config>{.interpreted-text role="ref"} instead (587{.interpreted-text role="pep"}). (Contributed by Victor Stinner in88279{.interpreted-text role="gh"}.)Deprecate the
ob_shashmember of thePyBytesObject{.interpreted-text role="c:type"}. UsePyObject_Hash{.interpreted-text role="c:func"} instead. (Contributed by Inada Naoki in46864{.interpreted-text role="issue"}.)
Pending Removal in Python 3.12 {#whatsnew311-c-api-pending-removal}
The following C APIs have been deprecated in earlier Python releases, and will be removed in Python 3.12.
!PyUnicode_AS_DATA{.interpreted-text role="c:func"}!PyUnicode_AS_UNICODE{.interpreted-text role="c:func"}!PyUnicode_AsUnicodeAndSize{.interpreted-text role="c:func"}!PyUnicode_AsUnicode{.interpreted-text role="c:func"}!PyUnicode_FromUnicode{.interpreted-text role="c:func"}!PyUnicode_GET_DATA_SIZE{.interpreted-text role="c:func"}!PyUnicode_GET_SIZE{.interpreted-text role="c:func"}!PyUnicode_GetSize{.interpreted-text role="c:func"}!PyUnicode_IS_COMPACT{.interpreted-text role="c:func"}!PyUnicode_IS_READY{.interpreted-text role="c:func"}PyUnicode_READY{.interpreted-text role="c:func"}!PyUnicode_WSTR_LENGTH{.interpreted-text role="c:func"}!_PyUnicode_AsUnicode{.interpreted-text role="c:func"}!PyUnicode_WCHAR_KIND{.interpreted-text role="c:macro"}PyUnicodeObject{.interpreted-text role="c:type"}!PyUnicode_InternImmortal{.interpreted-text role="c:func"}
Removed {#whatsnew311-c-api-removed}
!PyFrame_BlockSetup{.interpreted-text role="c:func"} and!PyFrame_BlockPop{.interpreted-text role="c:func"} have been removed. (Contributed by Mark Shannon in40222{.interpreted-text role="issue"}.)Remove the following math macros using the
errnovariable:Py_ADJUST_ERANGE1()Py_ADJUST_ERANGE2()Py_OVERFLOWED()Py_SET_ERANGE_IF_OVERFLOW()Py_SET_ERRNO_ON_MATH_ERROR()
(Contributed by Victor Stinner in
45412{.interpreted-text role="issue"}.)Remove
Py_UNICODE_COPY()andPy_UNICODE_FILL()macros, deprecated since Python 3.3. UsePyUnicode_CopyCharacters()ormemcpy()(wchar_t*string), andPyUnicode_Fill()functions instead. (Contributed by Victor Stinner in41123{.interpreted-text role="issue"}.)Remove the
pystrhex.hheader file. It only contains private functions. C extensions should only include the main<Python.h>header file. (Contributed by Victor Stinner in45434{.interpreted-text role="issue"}.)Remove the
Py_FORCE_DOUBLE()macro. It was used by thePy_IS_INFINITY()macro. (Contributed by Victor Stinner in45440{.interpreted-text role="issue"}.)The following items are no longer available when
Py_LIMITED_API{.interpreted-text role="c:macro"} is defined:PyMarshal_WriteLongToFile{.interpreted-text role="c:func"}PyMarshal_WriteObjectToFile{.interpreted-text role="c:func"}PyMarshal_ReadObjectFromString{.interpreted-text role="c:func"}PyMarshal_WriteObjectToString{.interpreted-text role="c:func"}- the
Py_MARSHAL_VERSIONmacro
These are not part of the
limited API <limited-api-list>{.interpreted-text role="ref"}.(Contributed by Victor Stinner in
45474{.interpreted-text role="issue"}.)Exclude
!PyWeakref_GET_OBJECT{.interpreted-text role="c:func"} from the limited C API. It never worked since the!PyWeakReference{.interpreted-text role="c:type"} structure is opaque in the limited C API. (Contributed by Victor Stinner in35134{.interpreted-text role="issue"}.)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 thePyTypeObject.tp_membersmember instead. (Contributed by Victor Stinner in40170{.interpreted-text role="issue"}.)Remove the
HAVE_PY_SET_53BIT_PRECISIONmacro (moved to the internal C API). (Contributed by Victor Stinner in45412{.interpreted-text role="issue"}.)
::: {#whatsnew311-pep624}
Remove the
Py_UNICODE{.interpreted-text role="c:type"} 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:
!PyUnicode_Encode{.interpreted-text role="func"}!PyUnicode_EncodeASCII{.interpreted-text role="func"}!PyUnicode_EncodeLatin1{.interpreted-text role="func"}!PyUnicode_EncodeUTF7{.interpreted-text role="func"}!PyUnicode_EncodeUTF8{.interpreted-text role="func"}!PyUnicode_EncodeUTF16{.interpreted-text role="func"}!PyUnicode_EncodeUTF32{.interpreted-text role="func"}!PyUnicode_EncodeUnicodeEscape{.interpreted-text role="func"}!PyUnicode_EncodeRawUnicodeEscape{.interpreted-text role="func"}!PyUnicode_EncodeCharmap{.interpreted-text role="func"}!PyUnicode_TranslateCharmap{.interpreted-text role="func"}!PyUnicode_EncodeDecimal{.interpreted-text role="func"}!PyUnicode_TransformDecimalToASCII{.interpreted-text role="func"}
See
624{.interpreted-text role="pep"} for details andmigration guidance <624#alternative-apis>{.interpreted-text role="pep"}. (Contributed by Inada Naoki in44029{.interpreted-text role="issue"}.)
:::
Notable changes in 3.11.4
tarfile
- The extraction methods in
tarfile{.interpreted-text role="mod"}, andshutil.unpack_archive{.interpreted-text role="func"}, have a new a filter argument that allows limiting tar features than may be surprising or dangerous, such as creating files outside the destination directory. Seetarfile-extraction-filter{.interpreted-text role="ref"} for details. In Python 3.12, use without the filter argument will show aDeprecationWarning{.interpreted-text role="exc"}. In Python 3.14, the default will switch to'data'. (Contributed by Petr Viktorin in706{.interpreted-text role="pep"}.)
Notable changes in 3.11.5
OpenSSL
- Windows builds and macOS installers from python.org now use OpenSSL 3.0.
[^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 45947{.interpreted-text role="issue"}.
[^3]: All jump opcodes are now relative, including the existing !JUMP_IF_TRUE_OR_POP{.interpreted-text role="opcode"} and !JUMP_IF_FALSE_OR_POP{.interpreted-text role="opcode"}. The argument is now an offset from the current instruction rather than an absolute location.