What’s new in Python 3.14¶
- Editors:
Adam Turner and Hugo van Kemenade
This article explains the new features in Python 3.14, compared to 3.13.Python 3.14 was released on 7 October 2025.For full details, see thechangelog.
See also
PEP 745 – Python 3.14 release schedule
Summary – Release highlights¶
Python 3.14 is the latest stable release of the Python programminglanguage, with a mix of changes to the language, the implementation,and the standard library.The biggest changes includetemplate string literals,deferred evaluation of annotations,and support forsubinterpreters inthe standard library.
The library changes include significantly improved capabilities forintrospection in asyncio,support for Zstandard via a newcompression.zstd
module, syntax highlighting in the REPL,as well as the usual deprecations and removals,and improvements in user-friendliness and correctness.
This article doesn’t attempt to provide a complete specificationof all new features, but instead gives a convenient overview.For full details refer to the documentation,such as theLibrary ReferenceandLanguage Reference.To understand the complete implementation and design rationale for a change,refer to the PEP for a particular new feature;but note that PEPs usually are not kept up-to-dateonce a feature has been fully implemented.SeePorting to Python 3.14 for guidance on upgrading fromearlier versions of Python.
Interpreter improvements:
Significant improvements in the standard library:
Syntax highlighting in the default interactive shell, and color output in severalstandard library CLIs
C API improvements:
Platform support:
PEP 776: Emscripten is now anofficially supported platform, attier 3.
Release changes:
New features¶
PEP 649 &PEP 749: Deferred evaluation of annotations¶
Theannotations on functions, classes, and modules are nolonger evaluated eagerly. Instead, annotations are stored in special-purposeannotate functions and evaluated only whennecessary (except iffrom__future__importannotations
is used).
This change is designed to improve performance and usability of annotationsin Python in most circumstances. The runtime cost for defining annotations isminimized, but it remains possible to introspect annotations at runtime.It is no longer necessary to enclose annotations in strings if theycontain forward references.
The newannotationlib
module provides tools for inspecting deferredannotations. Annotations may be evaluated in theVALUE
format (which evaluates annotations to runtime values, similar to the behavior inearlier Python versions), theFORWARDREF
format(which replaces undefined names with special markers), and theSTRING
format (which returns annotations as strings).
This example shows how these formats behave:
>>>fromannotationlibimportget_annotations,Format>>>deffunc(arg:Undefined):...pass>>>get_annotations(func,format=Format.VALUE)Traceback (most recent call last):...NameError:name 'Undefined' is not defined>>>get_annotations(func,format=Format.FORWARDREF){'arg': ForwardRef('Undefined', owner=<function func at 0x...>)}>>>get_annotations(func,format=Format.STRING){'arg': 'Undefined'}
Theporting section contains guidanceon changes that may be needed due to these changes, though in the majority ofcases, code will continue working as-is.
(Contributed by Jelle Zijlstra inPEP 749 andgh-119180;PEP 649 was written by Larry Hastings.)
PEP 734: Multiple interpreters in the standard library¶
The CPython runtime supports running multiple copies of Python in thesame process simultaneously and has done so for over 20 years.Each of these separate copies is called an ‘interpreter’.However, the feature had been available only throughtheC-API.
That limitation is removed in Python 3.14,with the newconcurrent.interpreters
module.
There are at least two notable reasons why using multiple interpretershas significant benefits:
they support a new (to Python), human-friendly concurrency model
true multi-core parallelism
For some use cases, concurrency in software improves efficiency andcan simplify design, at a high level.At the same time, implementing and maintaining all but the simplest concurrencyis often a struggle for the human brain.That especially applies to plain threads (for example,threading
),where all memory is shared between all threads.
With multiple isolated interpreters, you can take advantage of a classof concurrency models, like Communicating Sequential Processes (CSP)or the actor model, that have foundsuccess in other programming languages, like Smalltalk, Erlang,Haskell, and Go. Think of multiple interpreters as threadsbut with opt-in sharing.
Regarding multi-core parallelism: as of Python 3.12, interpretersare now sufficiently isolated from one another to be used in parallel(seePEP 684). This unlocks a variety of CPU-intensive use casesfor Python that were limited by theGIL.
Using multiple interpreters is similar in many ways tomultiprocessing
, in that they both provide isolated logical“processes” that can run in parallel, with no sharing by default.However, when using multiple interpreters, an application will usefewer system resources and will operate more efficiently (since itstays within the same process). Think of multiple interpreters ashaving the isolation of processes with the efficiency of threads.
While the feature has been around for decades, multiple interpretershave not been used widely, due to low awareness and the lack of astandard library module. Consequently, they currently have severalnotable limitations, which are expected to improve significantly nowthat the feature is going mainstream.
Current limitations:
starting each interpreter has not been optimized yet
each interpreter uses more memory than necessary(work continues on extensive internal sharing between interpreters)
there aren’t many optionsyet for truly sharing objects or otherdata between interpreters (other than
memoryview
)many third-party extension modules on PyPI are not yet compatiblewith multiple interpreters(all standard library extension modulesare compatible)
the approach to writing applications that use multiple isolatedinterpreters is mostly unfamiliar to Python users, for now
The impact of these limitations will depend on future CPythonimprovements, how interpreters are used, and what the community solvesthrough PyPI packages. Depending on the use case, the limitations maynot have much impact, so try it out!
Furthermore, future CPython releases will reduce or eliminate overheadand provide utilities that are less appropriate on PyPI. In themeantime, most of the limitations can also be addressed throughextension modules, meaning PyPI packages can fill any gap for 3.14, andeven back to 3.12 where interpreters were finally properly isolated andstopped sharing theGIL. Likewise, libraries on PyPI are expectedto emerge for high-level abstractions on top of interpreters.
Regarding extension modules, work is in progress to update some PyPIprojects, as well as tools like Cython, pybind11, nanobind, and PyO3.The steps for isolating an extension module are found atIsolating Extension Modules.Isolating a module has a lot of overlap with what is required to supportfree-threading, so the ongoingwork in the community in that area will help accelerate supportfor multiple interpreters.
Also added in 3.14:concurrent.futures.InterpreterPoolExecutor.
(Contributed by Eric Snow ingh-134939.)
See also
PEP 750: Template string literals¶
Template strings are a new mechanism for custom string processing.They share the familiar syntax of f-strings but, unlike f-strings,return an object representing the static and interpolated parts ofthe string, instead of a simplestr
.
To write a t-string, use a't'
prefix instead of an'f'
:
>>>variety='Stilton'>>>template=t'Try some{variety} cheese!'>>>type(template)<class 'string.templatelib.Template'>
Template
objects provide access to the staticand interpolated (in curly braces) parts of a stringbefore they are combined.Iterate overTemplate
instances to access their parts in order:
>>>list(template)['Try some ', Interpolation('Stilton', 'variety', None, ''), ' cheese!']
It’s easy to write (or call) code to processTemplate
instances.For example, here’s a function that renders static parts lowercase andInterpolation
instances uppercase:
fromstring.templatelibimportInterpolationdeflower_upper(template):"""Render static parts lowercase and interpolations uppercase."""parts=[]forpartintemplate:ifisinstance(part,Interpolation):parts.append(str(part.value).upper())else:parts.append(part.lower())return''.join(parts)name='Wenslydale'template=t'Mister{name}'assertlower_upper(template)=='mister WENSLYDALE'
BecauseTemplate
instances distinguish between static strings andinterpolations at runtime, they can be useful for sanitising user input.Writing ahtml()
function that escapes user input in HTML is an exerciseleft to the reader!Template processing code can provide improved flexibility.For instance, a more advancedhtml()
function could acceptadict
of HTML attributes directly in the template:
attributes={'src':'limburger.jpg','alt':'lovely cheese'}template=t'<img{attributes}>'asserthtml(template)=='<img src="limburger.jpg" alt="lovely cheese" />'
Of course, template processing code does not need to return a string-like result.An evenmore advancedhtml()
could return a custom type representinga DOM-like structure.
With t-strings in place, developers can write systems that sanitise SQL,make safe shell operations, improve logging, tackle modern ideas in webdevelopment (HTML, CSS, and so on), and implement lightweight custom business DSLs.
(Contributed by Jim Baker, Guido van Rossum, Paul Everitt, Koudai Aono,Lysandros Nikolaou, Dave Peck, Adam Turner, Jelle Zijlstra, Bénédikt Tran,and Pablo Galindo Salgado ingh-132661.)
See also
PEP 768: Safe external debugger interface¶
Python 3.14 introduces a zero-overhead debugging interface that allowsdebuggers and profilers to safely attach to running Python processeswithout stopping or restarting them.This is a significant enhancement to Python’s debugging capabilities,meaning that unsafe alternatives are no longer required.
The new interface provides safe execution points for attaching debugger codewithout modifying the interpreter’s normal execution pathor adding any overhead at runtime.Due to this, tools can now inspect and interact with Python applicationsin real-time, which is a crucial capability for high-availability systemsand production environments.
For convenience, this interface is implemented in thesys.remote_exec()
function. For example:
importsysfromtempfileimportNamedTemporaryFilewithNamedTemporaryFile(mode='w',suffix='.py',delete=False)asf:script_path=f.namef.write(f'import my_debugger; my_debugger.connect({os.getpid()})')# Execute in process with PID 1234print('Behold! An offering:')sys.remote_exec(1234,script_path)
This function allows sending Python code to be executed in a target processat the next safe execution point.However, tool authors can also implement the protocol directly as describedin the PEP, which details the underlying mechanisms used to safely attach torunning processes.
The debugging interface has been carefully designed with security in mindand includes several mechanisms to control access:
A
PYTHON_DISABLE_REMOTE_DEBUG
environment variable.A
-Xdisable-remote-debug
command-line option.A
--without-remote-debug
configure flag to completely disablethe feature at build time.
(Contributed by Pablo Galindo Salgado, Matt Wozniski, and Ivona Stojanovicingh-131591.)
See also
A new type of interpreter¶
A new type of interpreter has been added to CPython.It uses tail calls between small C functions that implement individualPython opcodes, rather than one large Ccase
statement.For certain newer compilers, this interpreter providessignificantly better performance. Preliminary benchmarks suggest a geometricmean of 3-5% faster on the standardpyperformance
benchmark suite,depending on platform and architecture.The baseline is Python 3.14 built with Clang 19, without this new interpreter.
This interpreter currently only works with Clang 19 and neweron x86-64 and AArch64 architectures.However, a future release of GCC is expected to support this as well.
This feature is opt-in for now. Enabling profile-guided optimization is highlyrecommendeded when using the new interpreter as it is the only configurationthat has been tested and validated for improved performance.For further information, see--with-tail-call-interp
.
Note
This is not to be confused withtail call optimization of Pythonfunctions, which is currently not implemented in CPython.
This new interpreter type is an internal implementation detail of the CPythoninterpreter. It doesn’t change the visible behavior of Python programs atall. It can improve their performance, but doesn’t change anything else.
(Contributed by Ken Jin ingh-128563, with ideas on how to implement thisin CPython by Mark Shannon, Garrett Gu, Haoran Xu, and Josh Haberman.)
Free-threaded mode improvements¶
CPython’s free-threaded mode (PEP 703), initially added in 3.13,has been significantly improved in Python 3.14.The implementation described in PEP 703 has been finished, including C APIchanges, and temporary workarounds in the interpreter were replaced withmore permanent solutions.The specializing adaptive interpreter (PEP 659) is now enabledin free-threaded mode, which along with many other optimizationsgreatly improves its performance.The performance penalty on single-threaded code in free-threaded modeis now roughly 5-10%, depending on the platform and C compiler used.
From Python 3.14, when compiling extension modules for the free-threaded build ofCPython on Windows, the preprocessor variablePy_GIL_DISABLED
now needs tobe specified by the build backend, as it will no longer be determinedautomatically by the C compiler. For a running interpreter, the setting thatwas used at compile time can be found usingsysconfig.get_config_var()
.
The new-Xcontext_aware_warnings
flag controls ifconcurrent safe warnings controlis enabled. The flag defaults to true for the free-threaded buildand false for the GIL-enabled build.
A newthread_inherit_context
flag has been added,which if enabled means that threads created withthreading.Thread
start with a copy of theContext()
of the caller ofstart()
. Most significantly, this makes the warningfiltering context established bycatch_warnings
be“inherited” by threads (or asyncio tasks) started within that context. It alsoaffects other modules that use context variables, such as thedecimal
context manager.This flag defaults to true for the free-threaded build and false forthe GIL-enabled build.
(Contributed by Sam Gross, Matt Page, Neil Schemenauer, Thomas Wouters,Donghee Na, Kirill Podoprigora, Ken Jin, Itamar Oren, Brett Simmers,Dino Viehland, Nathan Goldbaum, Ralf Gommers, Lysandros Nikolaou, Kumar Aditya,Edgar Margffoy, and many others.Some of these contributors are employed by Meta, which has continued to providesignificant engineering resources to support this project.)
Improved error messages¶
The interpreter now provides helpful suggestions when it detects typos in Pythonkeywords. When a word that closely resembles a Python keyword is encountered,the interpreter will suggest the correct keyword in the error message. Thisfeature helps programmers quickly identify and fix common typing mistakes. Forexample:
>>>whilleTrue:...passTraceback (most recent call last): File"<stdin>", line1whilleTrue:^^^^^^SyntaxError:invalid syntax. Did you mean 'while'?
While the feature focuses on the most common cases, some variations ofmisspellings may still result in regular syntax errors.(Contributed by Pablo Galindo ingh-132449.)
elif
statements that follow anelse
block now havea specific error message.(Contributed by Steele Farnsworth ingh-129902.)>>>ifwho=="me":...print("It's me!")...else:...print("It's not me!")...elifwhoisNone:...print("Who is it?")File "<stdin>", line 5 elif who is None: ^^^^SyntaxError: 'elif' block follows an 'else' block
If a statement is passed to theConditional expressions after
else
,or one ofpass
,break
, orcontinue
is passed beforeif
, then theerror message highlights where theexpression
isrequired. (Contributed by Sergey Miryanov ingh-129515.)>>>x=1ifTrueelsepassTraceback (most recent call last): File"<string>", line1x=1ifTrueelsepass^^^^SyntaxError:expected expression after 'else', but statement is given>>>x=continueifTrueelsebreakTraceback (most recent call last): File"<string>", line1x=continueifTrueelsebreak^^^^^^^^SyntaxError:expected expression before 'if', but statement is given
When incorrectly closed strings are detected, the error message suggeststhat the string may be intended to be part of the string.(Contributed by Pablo Galindo ingh-88535.)
>>>"The interesting object "Theimportantobject" is very important"Traceback (most recent call last):SyntaxError:invalid syntax. Is this intended to be part of the string?
When strings have incompatible prefixes, the error now showswhich prefixes are incompatible.(Contributed by Nikita Sobolev ingh-133197.)
>>>ub'abc' File"<python-input-0>", line1ub'abc'^^SyntaxError:'u' and 'b' prefixes are incompatible
Improved error messages when using
as
with incompatible targets in:Imports:
import...as...
From imports:
from...import...as...
Except handlers:
except...as...
Pattern-match cases:
case...as...
(Contributed by Nikita Sobolev ingh-123539,gh-123562, andgh-123440.)
Improved error message when trying to add an instance of an unhashable type toa
dict
orset
.(Contributed by CF Bolz-Tereick and Victor Stinner ingh-132828.)>>>s=set()>>>s.add({'pages':12,'grade':'A'})Traceback (most recent call last): File"<python-input-1>", line1, in<module>s.add({'pages':12,'grade':'A'})~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^TypeError:cannot use 'dict' as a set element (unhashable type: 'dict')>>>d={}>>>l=[1,2,3]>>>d[l]=12Traceback (most recent call last): File"<python-input-4>", line1, in<module>d[l]=12~^^^TypeError:cannot use 'list' as a dict key (unhashable type: 'list')
Improved error message when an object supporting the synchronouscontext manager protocol is entered using
asyncwith
instead ofwith
,and vice versa for the asynchronous context manager protocol.(Contributed by Bénédikt Tran ingh-128398.)
PEP 784: Zstandard support in the standard library¶
The newcompression
package contains modulescompression.lzma
,compression.bz2
,compression.gzip
andcompression.zlib
which re-export thelzma
,bz2
,gzip
andzlib
modules respectively. The new import names undercompression
are thepreferred names for importing these compression modules from Python 3.14. However,the existing modules names have not been deprecated. Any deprecation or removalof the existing compression modules will occur no sooner than five years afterthe release of 3.14.
The newcompression.zstd
module provides compression and decompressionAPIs for the Zstandard format via bindings toMeta’s zstd library. Zstandard is a widely adopted, highlyefficient, and fast compression format. In addition to the APIs introduced incompression.zstd
, support for reading and writing Zstandard compressedarchives has been added to thetarfile
,zipfile
, andshutil
modules.
Here’s an example of using the new module to compress some data:
fromcompressionimportzstdimportmathdata=str(math.pi).encode()*20compressed=zstd.compress(data)ratio=len(compressed)/len(data)print(f"Achieved compression ratio of{ratio}")
As can be seen, the API is similar to the APIs of thelzma
andbz2
modules.
(Contributed by Emma Harper Smith, Adam Turner, Gregory P. Smith, Tomas Roun,Victor Stinner, and Rogdham ingh-132983.)
See also
Asyncio introspection capabilities¶
Added a new command-line interface to inspect running Python processesusing asynchronous tasks, available viapython-masynciopsPID
orpython-masynciopstreePID
.
Theps
subcommand inspects the given process ID (PID) and displaysinformation about currently running asyncio tasks.It outputs a task table: a flat listing of all tasks, their names,their coroutine stacks, and which tasks are awaiting them.
Thepstree
subcommand fetches the same information, but instead renders avisual async call tree, showing coroutine relationships in a hierarchical format.This command is particularly useful for debugging long-running or stuckasynchronous programs.It can help developers quickly identify where a program is blocked,what tasks are pending, and how coroutines are chained together.
For example given this code:
importasyncioasyncdefplay_track(track):awaitasyncio.sleep(5)print(f'🎵 Finished:{track}')asyncdefplay_album(name,tracks):asyncwithasyncio.TaskGroup()astg:fortrackintracks:tg.create_task(play_track(track),name=track)asyncdefmain():asyncwithasyncio.TaskGroup()astg:tg.create_task(play_album('Sundowning',['TNDNBTG','Levitate']),name='Sundowning')tg.create_task(play_album('TMBTE',['DYWTYLM','Aqua Regia']),name='TMBTE')if__name__=='__main__':asyncio.run(main())
Executing the new tool on the running process will yield a table like this:
python-masynciops12345tidtaskidtasknamecoroutinestackawaiterchainawaiternameawaiterid------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------19355000x7fc930c18050Task-1TaskGroup._aexit->TaskGroup.__aexit__->main0x019355000x7fc930c18230SundowningTaskGroup._aexit->TaskGroup.__aexit__->albumTaskGroup._aexit->TaskGroup.__aexit__->mainTask-10x7fc930c1805019355000x7fc93173fa50TMBTETaskGroup._aexit->TaskGroup.__aexit__->albumTaskGroup._aexit->TaskGroup.__aexit__->mainTask-10x7fc930c1805019355000x7fc93173fdf0TNDNBTGsleep->playTaskGroup._aexit->TaskGroup.__aexit__->albumSundowning0x7fc930c1823019355000x7fc930d32510Levitatesleep->playTaskGroup._aexit->TaskGroup.__aexit__->albumSundowning0x7fc930c1823019355000x7fc930d32890DYWTYLMsleep->playTaskGroup._aexit->TaskGroup.__aexit__->albumTMBTE0x7fc93173fa5019355000x7fc93161ec30AquaRegiasleep->playTaskGroup._aexit->TaskGroup.__aexit__->albumTMBTE0x7fc93173fa50
or a tree like this:
python-masynciopstree12345└──(T)Task-1└──mainexample.py:13└──TaskGroup.__aexit__Lib/asyncio/taskgroups.py:72└──TaskGroup._aexitLib/asyncio/taskgroups.py:121├──(T)Sundowning│└──albumexample.py:8│└──TaskGroup.__aexit__Lib/asyncio/taskgroups.py:72│└──TaskGroup._aexitLib/asyncio/taskgroups.py:121│├──(T)TNDNBTG││└──playexample.py:4││└──sleepLib/asyncio/tasks.py:702│└──(T)Levitate│└──playexample.py:4│└──sleepLib/asyncio/tasks.py:702└──(T)TMBTE└──albumexample.py:8└──TaskGroup.__aexit__Lib/asyncio/taskgroups.py:72└──TaskGroup._aexitLib/asyncio/taskgroups.py:121├──(T)DYWTYLM│└──playexample.py:4│└──sleepLib/asyncio/tasks.py:702└──(T)AquaRegia└──playexample.py:4└──sleepLib/asyncio/tasks.py:702
If a cycle is detected in the async await graph (which could indicate aprogramming issue), the tool raises an error and lists the cycle paths thatprevent tree construction:
python-masynciopstree12345ERROR:await-graphcontainscycles-cannotprintatree!cycle:Task-2→Task-3→Task-2
(Contributed by Pablo Galindo, Łukasz Langa, Yury Selivanov, and MartaGomez Macias ingh-91048.)
Concurrent safe warnings control¶
Thewarnings.catch_warnings
context manager will now optionallyuse a context variable for warning filters. This is enabled by settingthecontext_aware_warnings
flag, either with the-X
command-line option or an environment variable. This gives predictablewarnings control when usingcatch_warnings
combined withmultiple threads or asynchronous tasks. The flag defaults to true for thefree-threaded build and false for the GIL-enabled build.
(Contributed by Neil Schemenauer and Kumar Aditya ingh-130010.)
Other language changes¶
All Windows code pages are now supported as ‘cpXXX’ codecs on Windows.(Contributed by Serhiy Storchaka ingh-123803.)
Implement mixed-mode arithmetic rules combining real and complex numbersas specified by the C standard since C99.(Contributed by Sergey B Kirpichev ingh-69639.)
More syntax errors are now detected regardless of optimisation andthe
-O
command-line option.This includes writes to__debug__
, incorrect use ofawait
,and asynchronous comprehensions outside asynchronous functions.For example,python-O-c'assert(__debug__:=1)'
orpython-O-c'assertawait1'
now produceSyntaxError
s.(Contributed by Irit Katriel and Jelle Zijlstra ingh-122245 &gh-121637.)When subclassing a pure C type, the C slots for the new typeare no longer replaced with a wrapped version on class creationif they are not explicitly overridden in the subclass.(Contributed by Tomasz Pytel ingh-132284.)
Built-ins¶
The
bytes.fromhex()
andbytearray.fromhex()
methods now acceptASCIIbytes
andbytes-like objects.(Contributed by Daniel Pope ingh-129349.)Add class methods
float.from_number()
andcomplex.from_number()
to convert a number tofloat
orcomplex
type correspondingly.They raise aTypeError
if the argument is not a real number.(Contributed by Serhiy Storchaka ingh-84978.)Support underscore and comma as thousands separators in the fractional partfor floating-point presentation types of the new-style string formatting(with
format()
orf-strings).(Contributed by Sergey B Kirpichev ingh-87790.)The
int()
function no longer delegates to__trunc__()
.Classes that want to support conversion toint()
must implementeither__int__()
or__index__()
.(Contributed by Mark Dickinson ingh-119743.)The
map()
function now has an optional keyword-onlystrict flaglikezip()
to check that all the iterables are of equal length.(Contributed by Wannes Boeykens ingh-119793.)The
memoryview
type now supports subscription,making it ageneric type.(Contributed by Brian Schubert ingh-126012.)Using
NotImplemented
in a boolean contextwill now raise aTypeError
.This has raised aDeprecationWarning
since Python 3.9.(Contributed by Jelle Zijlstra ingh-118767.)Three-argument
pow()
now tries calling__rpow__()
if necessary.Previously it was only called in two-argumentpow()
and the binary power operator.(Contributed by Serhiy Storchaka ingh-130104.)super
objects are nowcopyable
andpickleable
.(Contributed by Serhiy Storchaka ingh-125767.)
Command line and environment¶
The import time flag can now track modules that are already loaded (‘cached’),via the new
-Ximporttime=2
.When such a module is imported, theself
andcumulative
timesare replaced by the stringcached
.Values above
2
for-Ximporttime
are now reserved for future use.(Contributed by Noah Kim and Adam Turner ingh-118655.)
The command-line option
-c
now automatically dedents its codeargument before execution. The auto-dedentation behavior mirrorstextwrap.dedent()
.(Contributed by Jon Crall and Steven Sun ingh-103998.)-J
is no longer a reserved flag forJython,and now has no special meaning.(Contributed by Adam Turner ingh-133336.)
PEP 758: Allowexcept
andexcept*
expressions without brackets¶
Theexcept
andexcept*
expressionsnow allow brackets to be omitted when there are multiple exception typesand theas
clause is not used.For example:
try:connect_to_server()exceptTimeoutError,ConnectionRefusedError:print('The network has ceased to be!')
(Contributed by Pablo Galindo and Brett Cannon inPEP 758 andgh-131831.)
PEP 765: Control flow infinally
blocks¶
The compiler now emits aSyntaxWarning
when areturn
,break
, orcontinue
statement have the effect ofleaving afinally
block.This change is specified inPEP 765.
In situations where this change is inconvenient (such as those where thewarnings are redundant due to code linting), thewarning filter can be used to turn off all syntax warnings by addingignore::SyntaxWarning
as a filter. This can be specified in combinationwith a filter that converts other warnings to errors (for example, passing-Werror-Wignore::SyntaxWarning
as CLI options, or settingPYTHONWARNINGS=error,ignore::SyntaxWarning
).
Note that applying such a filter at runtime using thewarnings
modulewill only suppress the warning in code that is compiledafter the filter isadjusted. Code that is compiled prior to the filter adjustment (for example,when a module is imported) will still emit the syntax warning.
(Contributed by Irit Katriel ingh-130080.)
Incremental garbage collection¶
The cycle garbage collector is now incremental.This means that maximum pause times are reducedby an order of magnitude or more for larger heaps.
There are now only two generations: young and old.Whengc.collect()
is not called directly, theGC is invoked a little less frequently. When invoked, itcollects the young generation and an increment of theold generation, instead of collecting one or more generations.
The behavior ofgc.collect()
changes slightly:
gc.collect(1)
: Performs an increment of garbage collection,rather than collecting generation 1.Other calls to
gc.collect()
are unchanged.
(Contributed by Mark Shannon ingh-108362.)
Default interactive shell¶
The defaultinteractive shell now highlights Python syntax.The feature is enabled by default, save if
PYTHON_BASIC_REPL
or any other environment variable that disables colour is set.SeeControlling color for details.The default color theme for syntax highlighting strives for good contrastand exclusively uses the 4-bit VGA standard ANSI color codes for maximumcompatibility. The theme can be customized using an experimental API
_colorize.set_theme()
.This can be called interactively or in thePYTHONSTARTUP
script.Note that this function has no stability guarantees,and may change or be removed.(Contributed by Łukasz Langa ingh-131507.)
The defaultinteractive shell now supports import auto-completion.This means that typing
importco
and pressing<Tab> will suggestmodules starting withco
. Similarly, typingfromconcurrentimporti
will suggest submodules ofconcurrent
starting withi
.Note that autocompletion of module attributes is not currently supported.(Contributed by Tomas Roun ingh-69605.)
New modules¶
annotationlib
:For introspectingannotations.SeePEP 749 for more details.(Contributed by Jelle Zijlstra ingh-119180.)compression
(includingcompression.zstd
):A package for compression-related modules,including a new module to support the Zstandard compression format.SeePEP 784 for more details.(Contributed by Emma Harper Smith, Adam Turner, Gregory P. Smith, Tomas Roun,Victor Stinner, and Rogdham ingh-132983.)concurrent.interpreters
:Support for multiple interpreters in the standard library.SeePEP 734 for more details.(Contributed by Eric Snow ingh-134939.)string.templatelib
:Support for template string literals (t-strings).SeePEP 750 for more details.(Contributed by Jim Baker, Guido van Rossum, Paul Everitt, Koudai Aono,Lysandros Nikolaou, Dave Peck, Adam Turner, Jelle Zijlstra, Bénédikt Tran,and Pablo Galindo Salgado ingh-132661.)
Improved modules¶
argparse¶
The default value of theprogram name for
argparse.ArgumentParser
now reflects the way the Pythoninterpreter was instructed to find the__main__
module code.(Contributed by Serhiy Storchaka and Alyssa Coghlan ingh-66436.)Introduced the optionalsuggest_on_error parameter to
argparse.ArgumentParser
, enabling suggestions for argument choicesand subparser names if mistyped by the user.(Contributed by Savannah Ostrowski ingh-124456.)Enable color for help text, which can be disabled with the optionalcolorparameter to
argparse.ArgumentParser
.This can also be controlled byenvironment variables.(Contributed by Hugo van Kemenade ingh-130645.)
ast¶
Add
compare()
, a function for comparing two ASTs.(Contributed by Batuhan Taskaya and Jeremy Hylton ingh-60191.)Add support for
copy.replace()
for AST nodes.(Contributed by Bénédikt Tran ingh-121141.)Docstrings are now removed from an optimized AST in optimization level 2.(Contributed by Irit Katriel ingh-123958.)
The
repr()
output for AST nodes now includes more information.(Contributed by Tomas Roun ingh-116022.)When called with an AST as input, the
parse()
functionnow always verifies that the root node type is appropriate.(Contributed by Irit Katriel ingh-130139.)Add new options to the command-line interface:
--feature-version
,--optimize
, and--show-empty
.(Contributed by Semyon Moroz ingh-133367.)
asyncio¶
The function and methods named
create_task()
now take an arbitrarylist of keyword arguments. All keyword arguments are passed to theTask
constructor or the custom task factory.(Seeset_task_factory()
for details.)Thename
andcontext
keyword arguments are no longer special;the name should now be set using thename
keyword argument of the factory,andcontext
may beNone
.This affects the following function and methods:
asyncio.create_task()
,asyncio.loop.create_task()
,asyncio.TaskGroup.create_task()
.(Contributed by Thomas Grainger ingh-128307.)
There are two new utility functions forintrospecting and printing a program’s call graph:
capture_call_graph()
andprint_call_graph()
.SeeAsyncio introspection capabilities for more details.(Contributed by Yury Selivanov, Pablo Galindo Salgado, and Łukasz Langaingh-91048.)
calendar¶
By default, today’s date is highlighted in color in
calendar
’scommand-line text output.This can be controlled byenvironment variables.(Contributed by Hugo van Kemenade ingh-128317.)
concurrent.futures¶
Add a new executor class,
InterpreterPoolExecutor
,which exposes multiple Python interpreters in the same process(‘subinterpreters’) to Python code.This uses a pool of independent Python interpreters to execute callsasynchronously.This is separate from the new
interpreters
moduleintroduced byPEP 734.(Contributed by Eric Snow ingh-124548.)
On Unix platforms other than macOS,‘forkserver’ is now the the defaultstartmethod for
ProcessPoolExecutor
(replacing‘fork’).This change does not affect Windows or macOS, where‘spawn’ remains the default start method.If the threading incompatiblefork method is required, you must explicitlyrequest it by supplying a multiprocessing contextmp_context to
ProcessPoolExecutor
.Seeforkserver restrictionsfor information and differences with thefork method and how this changemay affect existing code with mutable global shared variables and/or sharedobjects that can not be automatically
pickled
.(Contributed by Gregory P. Smith ingh-84559.)
Add two new methods to
ProcessPoolExecutor
,terminate_workers()
andkill_workers()
,as ways to terminate or kill all living worker processes in the given pool.(Contributed by Charles Machalow ingh-130849.)Add the optionalbuffersize parameter to
Executor.map
to limit the number of submittedtasks whose results have not yet been yielded. If the buffer is full,iteration over theiterables pauses until a result is yielded from thebuffer.(Contributed by Enzo Bonnal and Josh Rosenberg ingh-74028.)
configparser¶
configparser
will no longer write config files it cannot read,to improve security.Attempting towrite()
keys containingdelimiters or beginning with the section header pattern will raise anInvalidWriteError
.(Contributed by Jacob Lincoln ingh-129270.)
contextvars¶
Support thecontext manager protocolfor
Token
objects.(Contributed by Andrew Svetlov ingh-129889.)
ctypes¶
The layout ofbit fieldsin
Structure
andUnion
objectsis now a closer match to platform defaults (GCC/Clang or MSVC).In particular, fields no longer overlap.(Contributed by Matthias Görgens ingh-97702.)The
Structure._layout_
class attribute can now be setto help match a non-default ABI.(Contributed by Petr Viktorin ingh-97702.)The class of
Structure
/Union
field descriptors is now available asCField
,and has new attributes to aid debugging and introspection.(Contributed by Petr Viktorin ingh-128715.)On Windows, the
COMError
exception is now public.(Contributed by Jun Komoda ingh-126686.)On Windows, the
CopyComPointer()
function is now public.(Contributed by Jun Komoda ingh-127275.)Add
memoryview_at()
, a function to create amemoryview
object that refers to the supplied pointer andlength. This works likectypes.string_at()
except it avoids abuffer copy, and is typically useful when implementing pure Pythoncallback functions that are passed dynamically-sized buffers.(Contributed by Rian Hunter ingh-112018.)Complex types,
c_float_complex
,c_double_complex
, andc_longdouble_complex
,are now available if both the compiler and thelibffi
library supportcomplex C types.(Contributed by Sergey B Kirpichev ingh-61103.)Add
ctypes.util.dllist()
for listing the shared librariesloaded by the current process.(Contributed by Brian Ward ingh-119349.)Move
ctypes.POINTER()
types cache from a global internal cache(_pointer_type_cache
) to the_CData.__pointer_type__
attribute of the correspondingctypes
types.This will stop the cache from growing without limits in some situations.(Contributed by Sergey Miryanov ingh-100926.)The
py_object
type now supports subscription,making it ageneric type.(Contributed by Brian Schubert ingh-132168.)ctypes
now supportsfree-threading builds.(Contributed by Kumar Aditya and Peter Bierma ingh-127945.)
curses¶
Add the
assume_default_colors()
function,a refinement of theuse_default_colors()
function whichallows changing the color pair0
.(Contributed by Serhiy Storchaka ingh-133139.)
datetime¶
Add the
strptime()
method to thedatetime.date
anddatetime.time
classes.(Contributed by Wannes Boeykens ingh-41431.)
decimal¶
Add
Decimal.from_number()
as an alternative constructor forDecimal
.(Contributed by Serhiy Storchaka ingh-121798.)Expose
IEEEContext()
to support creation of contextscorresponding to the IEEE 754 (2008) decimal interchange formats.(Contributed by Sergey B Kirpichev ingh-53032.)
difflib¶
dis¶
Add support for rendering full source location information of
instructions
, rather than only the line number.This feature is added to the following interfaces via theshow_positionskeyword argument:This feature is also exposed via
dis--show-positions
.(Contributed by Bénédikt Tran ingh-123165.)Add the
dis--specialized
command-line option toshow specialized bytecode.(Contributed by Bénédikt Tran ingh-127413.)
errno¶
faulthandler¶
Add support for printing the C stack trace on systems thatsupport it via the new
dump_c_stack()
function or via thec_stack argumentinfaulthandler.enable()
.(Contributed by Peter Bierma ingh-127604.)
fnmatch¶
Add
filterfalse()
, a function to reject namesmatching a given pattern.(Contributed by Bénédikt Tran ingh-74598.)
fractions¶
A
Fraction
object may now be constructed from anyobject with theas_integer_ratio()
method.(Contributed by Serhiy Storchaka ingh-82017.)Add
Fraction.from_number()
as an alternative constructor forFraction
.(Contributed by Serhiy Storchaka ingh-121797.)
functools¶
Add the
Placeholder
sentinel.This may be used with thepartial()
orpartialmethod()
functions to reserve a placefor positional arguments in the returnedpartial object.(Contributed by Dominykas Grigonis ingh-119127.)Allow theinitial parameter of
reduce()
to be passedas a keyword argument.(Contributed by Sayandip Dutta ingh-125916.)
getopt¶
getpass¶
graphlib¶
Allow
TopologicalSorter.prepare()
to be called more than onceas long as sorting has not started.(Contributed by Daniel Pope ingh-130914.)
heapq¶
The
heapq
module has improved support for working with max-heaps,via the following new functions:
hmac¶
http¶
Directory lists and error pages generated by the
http.server
module allow the browser to apply its default dark mode.(Contributed by Yorik Hansen ingh-123430.)The
http.server
module now supports serving over HTTPS using thehttp.server.HTTPSServer
class. This functionality is exposed bythe command-line interface (python-mhttp.server
) through the followingoptions:--tls-cert<path>
:Path to the TLS certificate file.--tls-key<path>
:Optional path to the private key file.--tls-password-file<path>
:Optional path to the password file for the private key.
(Contributed by Semyon Moroz ingh-85162.)
imaplib¶
Add
IMAP4.idle()
, implementing the IMAP4IDLE
command as defined inRFC 2177.(Contributed by Forest ingh-55454.)
inspect¶
signature()
takes a new argumentannotation_format to controltheannotationlib.Format
used for representing annotations.(Contributed by Jelle Zijlstra ingh-101552.)Signature.format()
takes a new argumentunquote_annotations.If true, stringannotations are displayed withoutsurrounding quotes.(Contributed by Jelle Zijlstra ingh-101552.)Add function
ispackage()
to determine whether an object is apackage or not.(Contributed by Zhikang Yan ingh-125634.)
io¶
Reading text from a non-blocking stream with
read
may now raise aBlockingIOError
if the operation cannot immediately return bytes.(Contributed by Giovanni Siragusa ingh-109523.)Add the
Reader
andWriter
protocols as simpleralternatives to the pseudo-protocolstyping.IO
,typing.TextIO
, andtyping.BinaryIO
.(Contributed by Sebastian Rittau ingh-127648.)
json¶
Add exception notes for JSON serialization errors that allowidentifying the source of the error.(Contributed by Serhiy Storchaka ingh-122163.)
Allow using the
json
module as a script using the-m
switch:python -m json.This is now preferred topython -m json.tool,which issoft deprecated.See theJSON command-line interface documentation.(Contributed by Trey Hunner ingh-122873.)By default, the output of theJSON command-line interface is highlighted in color.This can be controlled byenvironment variables.(Contributed by Tomas Roun ingh-131952.)
linecache¶
logging.handlers¶
QueueListener
objects now support thecontext manager protocol.(Contributed by Charles Machalow ingh-132106.)QueueListener.start
nowraises aRuntimeError
if the listener is already started.(Contributed by Charles Machalow ingh-132106.)
math¶
Added more detailed error messages for domain errors in the module.(Contributed by Charlie Zhao and Sergey B Kirpichev ingh-101410.)
mimetypes¶
Add a publiccommand-line for the module,invoked viapython -m mimetypes.(Contributed by Oleg Iarygin and Hugo van Kemenade ingh-93096.)
Add several new MIME types based on RFCs and common usage:
Microsoft andRFC 8081 MIME types for fonts
Embedded OpenType:
application/vnd.ms-fontobject
OpenType Layout (OTF)
font/otf
TrueType:
font/ttf
WOFF 1.0
font/woff
WOFF 2.0
font/woff2
RFC 9559 MIME types for Matroska audiovisualdata container structures
audio with no video:
audio/matroska
(.mka
)video:
video/matroska
(.mkv
)stereoscopic video:
video/matroska-3d
(.mk3d
)
Images with RFCs
RFC 1494: CCITT Group 3 (
.g3
)RFC 3362: Real-time Facsimile, T.38 (
.t38
)RFC 3745: JPEG 2000 (
.jp2
), extension (.jpx
) and compound (.jpm
)RFC 3950: Tag Image File Format Fax eXtended, TIFF-FX (
.tfx
)RFC 4047: Flexible Image Transport System (
.fits
)RFC 7903: Enhanced Metafile (
.emf
) and Windows Metafile (.wmf
)
Other MIME type additions and changes
RFC 2361: Change type for
.avi
tovideo/vnd.avi
and for.wav
toaudio/vnd.wave
RFC 4337: Add MPEG-4
audio/mp4
(.m4a
)RFC 5334: Add Ogg media (
.oga
,.ogg
and.ogx
)RFC 6713: Add gzip
application/gzip
(.gz
)RFC 9639: Add FLAC
audio/flac
(.flac
)RFC 9512
application/yaml
MIME type for YAML files (.yaml
and.yml
)Add 7z
application/x-7z-compressed
(.7z
)Add Android Package
application/vnd.android.package-archive
(.apk
)when not strictAdd deb
application/x-debian-package
(.deb
)Add glTF binary
model/gltf-binary
(.glb
)Add glTF JSON/ASCII
model/gltf+json
(.gltf
)Add M4V
video/x-m4v
(.m4v
)Add PHP
application/x-httpd-php
(.php
)Add RAR
application/vnd.rar
(.rar
)Add RPM
application/x-rpm
(.rpm
)Add STL
model/stl
(.stl
)Add Windows Media Video
video/x-ms-wmv
(.wmv
)De facto: Add WebM
audio/webm
(.weba
)ECMA-376:Add
.docx
,.pptx
and.xlsx
typesOASIS:Add OpenDocument
.odg
,.odp
,.ods
and.odt
typesW3C:Add EPUB
application/epub+zip
(.epub
)
(Contributed by Sahil Prajapati and Hugo van Kemenade ingh-84852,by Sasha “Nelie” Chernykh and Hugo van Kemenade ingh-132056,and by Hugo van Kemenade ingh-89416,gh-85957, andgh-129965.)
multiprocessing¶
On Unix platforms other than macOS,‘forkserver’ is now the the defaultstartmethod(replacing‘fork’).This change does not affect Windows or macOS, where‘spawn’ remains the default start method.
If the threading incompatiblefork method is required, you must explicitlyrequest it via a context from
get_context()
(preferred)or change the default viaset_start_method()
.Seeforkserver restrictionsfor information and differences with thefork method and how this changemay affect existing code with mutable global shared variables and/or sharedobjects that can not be automatically
pickled
.(Contributed by Gregory P. Smith ingh-84559.)
multiprocessing
’s'forkserver'
start method now authenticatesits control socket to avoid solely relying on filesystem permissionsto restrict what other processes could cause the forkserver to spawn workersand run code.(Contributed by Gregory P. Smith forgh-97514.)Themultiprocessing proxy objectsforlist anddict types gain previously overlooked missing methods:
clear()
andcopy()
for proxies oflist
fromkeys()
,reversed(d)
,d|{}
,{}|d
,d|={'b':2}
for proxies ofdict
(Contributed by Roy Hyunjin Han forgh-103134.)
Add support for shared
set
objects viaSyncManager.set()
.Theset()
inManager()
method is now available.(Contributed by Mingyu Park ingh-129949.)Add the
interrupt()
tomultiprocessing.Process
objects, which terminates the childprocess by sendingSIGINT
. This enablesfinally
clauses to print a stack trace for the terminatedprocess. (Contributed by Artem Pulkin ingh-131913.)
operator¶
Add
is_none()
andis_not_none()
as a pairof functions, such thatoperator.is_none(obj)
is equivalenttoobjisNone
andoperator.is_not_none(obj)
is equivalenttoobjisnotNone
.(Contributed by Raymond Hettinger and Nico Mexis ingh-115808.)
os¶
Add the
reload_environ()
function to updateos.environ
andos.environb
with changes to the environment made byos.putenv()
, byos.unsetenv()
, or made outside Python in thesame process.(Contributed by Victor Stinner ingh-120057.)Add the
SCHED_DEADLINE
andSCHED_NORMAL
constantsto theos
module.(Contributed by James Roy ingh-127688.)Add the
readinto()
function to read into abuffer object from a file descriptor.(Contributed by Cody Maloney ingh-129205.)
os.path¶
Thestrict parameter to
realpath()
accepts a new value,ALLOW_MISSING
.If used, errors other thanFileNotFoundError
will be re-raised;the resulting path can be missing but it will be free of symlinks.(Contributed by Petr Viktorin forCVE 2025-4517.)
pathlib¶
Add methods to
pathlib.Path
to recursively copy or move files anddirectories:copy()
copies a file or directory tree to a destination.copy_into()
copiesinto a destination directory.move()
moves a file or directory tree to a destination.move_into()
movesinto a destination directory.
(Contributed by Barney Gale ingh-73991.)
Add the
info
attribute, which stores an objectimplementing the newpathlib.types.PathInfo
protocol. Theobject supports querying the file type and internally cachingstat()
results. Path objects generated byiterdir()
are initialized with file type informationgleaned from scanning the parent directory.(Contributed by Barney Gale ingh-125413.)
pdb¶
The
pdb
module now supports remote attaching to a running Python processusing a new-pPID
command-line option:python-mpdb-p1234
This will connect to the Python process with the given PID and allow you todebug it interactively. Notice that due to how the Python interpreter worksattaching to a remote process that is blocked in a system call or waiting forI/O will only work once the next bytecode instruction is executed or when theprocess receives a signal.
This feature usesPEP 768and the new
sys.remote_exec()
function to attach to the remote processand send the PDB commands to it.(Contributed by Matt Wozniski and Pablo Galindo ingh-131591.)
Hardcoded breakpoints (
breakpoint()
andset_trace()
) nowreuse the most recentPdb
instance that callsset_trace()
, instead of creating a new one each time.As a result, all the instance specific data likedisplay
andcommands
are preserved across hardcoded breakpoints.(Contributed by Tian Gao ingh-121450.)Add a new argumentmode to
pdb.Pdb
. Disable therestart
command whenpdb
is ininline
mode.(Contributed by Tian Gao ingh-123757.)A confirmation prompt will be shown when the user tries to quit
pdb
ininline
mode.y
,Y
,<Enter>
orEOF
will confirmthe quit and callsys.exit()
, instead of raisingbdb.BdbQuit
.(Contributed by Tian Gao ingh-124704.)Inline breakpoints like
breakpoint()
orpdb.set_trace()
willalways stop the program at calling frame, ignoring theskip
pattern(if any).(Contributed by Tian Gao ingh-130493.)<tab>
at the beginning of the line inpdb
multi-line input willfill in a 4-space indentation now, instead of inserting a\t
character.(Contributed by Tian Gao ingh-130471.)Auto-indent is introduced in
pdb
multi-line input. It will eitherkeep the indentation of the last line or insert a 4-space indentation whenit detects a new code block.(Contributed by Tian Gao ingh-133350.)$_asynctask
is added to access the current asyncio task if applicable.(Contributed by Tian Gao ingh-124367.)pdb.set_trace_async()
is added to support debugging asynciocoroutines.await
statements are supported with thisfunction.(Contributed by Tian Gao ingh-132576.)Source code displayed in
pdb
will be syntax-highlighted. This featurecan be controlled using the same methods as the defaultinteractiveshell, in addition to the newly addedcolorize
argument ofpdb.Pdb
.(Contributed by Tian Gao and Łukasz Langa ingh-133355.)
pickle¶
Set the default protocol version on the
pickle
module to 5.For more details, seepickle protocols.Add exception notes for pickle serialization errors that allowidentifying the source of the error.(Contributed by Serhiy Storchaka ingh-122213.)
platform¶
Add
invalidate_caches()
, a function to invalidatecached results in theplatform
module.(Contributed by Bénédikt Tran ingh-122549.)
pydoc¶
Annotations in help output are now usuallydisplayed in a format closer to that in the original source.(Contributed by Jelle Zijlstra ingh-101552.)
re¶
Support
\z
as a synonym for\Z
inregularexpressions
.It is interpreted unambiguously in many other regular expression engines,unlike\Z
, which has subtly different behavior.(Contributed by Serhiy Storchaka ingh-133306.)\B
inregularexpression
now matches the empty input string,meaning that it is now always the opposite of\b
.(Contributed by Serhiy Storchaka ingh-124130.)
socket¶
Improve and fix support for Bluetooth sockets.
Fix support of Bluetooth sockets on NetBSD and DragonFly BSD.(Contributed by Serhiy Storchaka ingh-132429.)
Fix support for
BTPROTO_HCI
on FreeBSD.(Contributed by Victor Stinner ingh-111178.)Add support for
BTPROTO_SCO
on FreeBSD.(Contributed by Serhiy Storchaka ingh-85302.)Add support forcid andbdaddr_type in the address for
BTPROTO_L2CAP
on FreeBSD.(Contributed by Serhiy Storchaka ingh-132429.)Add support forchannel in the address for
BTPROTO_HCI
on Linux.(Contributed by Serhiy Storchaka ingh-70145.)Accept an integer as the address for
BTPROTO_HCI
on Linux.(Contributed by Serhiy Storchaka ingh-132099.)Returncid in
getsockname()
forBTPROTO_L2CAP
.(Contributed by Serhiy Storchaka ingh-132429.)Add many new constants.(Contributed by Serhiy Storchaka ingh-132734.)
ssl¶
struct¶
symtable¶
sys¶
The previously undocumented special function
sys.getobjects()
,which only exists in specialized builds of Python, may now return objectsfrom other interpreters than the one it’s called in.(Contributed by Eric Snow ingh-125286.)Add
sys._is_immortal()
for determining if an object isimmortal.(Contributed by Peter Bierma ingh-128509.)On FreeBSD,
sys.platform
no longer contains the major version number.It is always'freebsd'
, instead of'freebsd13'
or'freebsd14'
.(Contributed by Michael Osipov ingh-129393.)Raise
DeprecationWarning
forsys._clear_type_cache()
. Thisfunction was deprecated in Python 3.13 but it didn’t raise a runtime warning.Add
sys.remote_exec()
to implement the new external debugger interface.SeePEP 768 for details.(Contributed by Pablo Galindo Salgado, Matt Wozniski, and Ivona Stojanovicingh-131591.)Add the
sys._jit
namespace, containing utilities for introspectingjust-in-time compilation.(Contributed by Brandt Bucher ingh-133231.)
sys.monitoring¶
Add two new monitoring events,
BRANCH_LEFT
andBRANCH_RIGHT
.These replace and deprecate theBRANCH
event.(Contributed by Mark Shannon ingh-122548.)
sysconfig¶
Add
ABIFLAGS
key toget_config_vars()
on Windows.(Contributed by Xuehai Pan ingh-131799.)
tarfile¶
data_filter()
now normalizes symbolic link targets in order toavoid path traversal attacks.(Contributed by Petr Viktorin ingh-127987 andCVE 2025-4138.)extractall()
now skips fixing up directory attributeswhen a directory was removed or replaced by another kind of file.(Contributed by Petr Viktorin ingh-127987 andCVE 2024-12718.)extract()
andextractall()
now (re-)apply the extraction filter when substituting a link (hard orsymbolic) with a copy of another archive member, and when fixing updirectory attributes.The former raises a new exception,LinkFallbackError
.(Contributed by Petr Viktorin forCVE 2025-4330 andCVE 2024-12718.)extract()
andextractall()
no longer extract rejected members whenerrorlevel()
is zero.(Contributed by Matt Prodani and Petr Viktorin ingh-112887andCVE 2025-4435.)
threading¶
threading.Thread.start()
now sets the operating system thread nametothreading.Thread.name
.(Contributed by Victor Stinner ingh-59705.)
tkinter¶
turtle¶
Add context managers for
turtle.fill()
,turtle.poly()
,andturtle.no_animation()
.(Contributed by Marie Roald and Yngve Mardal Moe ingh-126350.)
types¶
types.UnionType
is now an alias fortyping.Union
.Seebelow for more details.(Contributed by Jelle Zijlstra ingh-105499.)
typing¶
The
types.UnionType
andtyping.Union
types are nowaliases for each other, meaning that both old-style unions(created withUnion[int,str]
) and new-style unions (int|str
)now create instances of the same runtime type. This unifies the behaviorbetween the two syntaxes, but leads to some differences in behavior thatmay affect users who introspect types at runtime:Both syntaxes for creating a union now produce the same stringrepresentation in
repr()
.For example,repr(Union[int,str])
is now"int|str"
instead of"typing.Union[int,str]"
.Unions created using the old syntax are no longer cached.Previously, running
Union[int,str]
multiple times would returnthe same object (Union[int,str]isUnion[int,str]
would beTrue
),but now it will return two different objects.Use==
to compare unions for equality, notis
.New-style unions have never been cached this way.This change could increase memory usage for some programs that usea large number of unions created by subscriptingtyping.Union
.However, several factors offset this cost:unions used in annotations are no longer evaluated by default in Python3.14 because ofPEP 649; an instance oftypes.UnionType
isitself much smaller than the object returned byUnion[]
was on priorPython versions; and removing the cache also saves some space.It is therefore unlikely that this change will cause a significant increasein memory usage for most users.Previously, old-style unions were implemented using the private class
typing._UnionGenericAlias
.This class is no longer needed for the implementation,but it has been retained for backward compatibility,with removal scheduled for Python 3.17.Users should use documented introspection helpers likeget_origin()
andtyping.get_args()
instead ofrelying on private implementation details.It is now possible to use
typing.Union
itself inisinstance()
checks.For example,isinstance(int|str,typing.Union)
will returnTrue
;previously this raisedTypeError
.The
__args__
attribute oftyping.Union
objects isno longer writable.It is no longer possible to set any attributes on
Union
objects.This only ever worked for dunder attributes on previous versions, was neverdocumented to work, and was subtly broken in many cases.
(Contributed by Jelle Zijlstra ingh-105499.)
TypeAliasType
now supports star unpacking.
unicodedata¶
The Unicode database has been updated to Unicode 16.0.0.
unittest¶
unittest
output is now colored by default.This can be controlled byenvironment variables.(Contributed by Hugo van Kemenade ingh-127221.)unittest discovery supportsnamespace package as startdirectory again. It was removed in Python 3.11.(Contributed by Jacob Walls ingh-80958.)
A number of new methods were added in the
TestCase
classthat provide more specialized tests.assertHasAttr()
andassertNotHasAttr()
check whether the objecthas a particular attribute.assertIsSubclass()
andassertNotIsSubclass()
check whether the objectis a subclass of a particular class, or of one of a tuple of classes.assertStartsWith()
,assertNotStartsWith()
,assertEndsWith()
andassertNotEndsWith()
check whether the Unicodeor byte string starts or ends with particular strings.
(Contributed by Serhiy Storchaka ingh-71339.)
urllib¶
Upgrade HTTP digest authentication algorithm for
urllib.request
bysupporting SHA-256 digest authentication as specified inRFC 7616.(Contributed by Calvin Bui ingh-128193.)Improve ergonomics and standards compliance when parsing and emitting
file:
URLs.Accept a complete URL when the newrequire_scheme argument is set totrue.
Discard URL authority if it matches the local hostname.
Discard URL authority if it resolves to a local IP address when the newresolve_host argument is set to true.
Discard URL query and fragment components.
Raise
URLError
if a URL authority isn’t local,except on Windows where we return a UNC path as before.
Return a complete URL when the newadd_scheme argument is set to true.
Include an empty URL authority when a path begins with a slash. Forexample, the path
/etc/hosts
is converted to the URL///etc/hosts
.
On Windows, drive letters are no longer converted to uppercase, and
:
characters not following a drive letter no longer cause anOSError
exception to be raised.(Contributed by Barney Gale ingh-125866.)
uuid¶
Add support for UUID versions 6, 7, and 8 via
uuid6()
,uuid7()
, anduuid8()
respectively, as specifiedinRFC 9562.(Contributed by Bénédikt Tran ingh-89083.)NIL
andMAX
are now available to represent theNil and Max UUID formats as defined byRFC 9562.(Contributed by Nick Pope ingh-128427.)Allow generating multiple UUIDs simultaneously on the command-line via
python-muuid--count
.(Contributed by Simon Legner ingh-131236.)
webbrowser¶
Names in the
BROWSER
environment variable can now refer to alreadyregistered browsers for thewebbrowser
module, instead of alwaysgenerating a new browser command.This makes it possible to set
BROWSER
to the value of one of thesupported browsers on macOS.
zipfile¶
Added
ZipInfo._for_archive
, a methodto resolve suitable defaults for aZipInfo
objectas used byZipFile.writestr
.(Contributed by Bénédikt Tran ingh-123424.)ZipFile.writestr()
now respects theSOURCE_DATE_EPOCH
environment variable in order to better support reproducible builds.(Contributed by Jiahao Li ingh-91279.)
Optimizations¶
The import time for several standard library modules has been improved,including
annotationlib
,ast
,asyncio
,base64
,cmd
,csv
,gettext
,importlib.util
,locale
,mimetypes
,optparse
,pickle
,pprint
,pstats
,shlex
,socket
,string
,subprocess
,threading
,tomllib
,types
, andzipfile
.(Contributed by Adam Turner, Bénédikt Tran, Chris Markiewicz, Eli Schwartz,Hugo van Kemenade, Jelle Zijlstra, and others ingh-118761.)
The interpreter now avoids some reference count modifications internallywhen it’s safe to do so.This can lead to different values being returned from
sys.getrefcount()
andPy_REFCNT()
compared to previous versions of Python.Seebelow for details.
asyncio¶
Standard benchmark results have improved by 10-20% following theimplementation of a new per-thread doubly linked listfor
nativetasks
,also reducing memory usage.This enables external introspection tools such aspython -m asyncio pstreeto introspect the call graph of asyncio tasks running in all threads.(Contributed by Kumar Aditya ingh-107803.)The module now has first class support forfree-threading builds.This enables parallel execution of multiple event loops acrossdifferent threads, scaling linearly with the number of threads.(Contributed by Kumar Aditya ingh-128002.)
base64¶
b16decode()
is now up to six times faster.(Contributed by Bénédikt Tran, Chris Markiewicz, and Adam Turneringh-118761.)
bdb¶
The basic debugger now has a
sys.monitoring
-based backend,which can be selected via the passing'monitoring'
to theBdb
class’s newbackend parameter.(Contributed by Tian Gao ingh-124533.)
difflib¶
The
IS_LINE_JUNK()
function is now up to twice as fast.(Contributed by Adam Turner and Semyon Moroz ingh-130167.)
gc¶
The newincremental garbage collectormeans that maximum pause times are reducedby an order of magnitude or more for larger heaps.
Because of this optimization, the meaning of the results of
get_threshold()
andset_threshold()
have changed,along withget_count()
andget_stats()
.For backwards compatibility,
get_threshold()
continues to returna three-item tuple.The first value is the threshold for young collections, as before;the second value determines the rate at which the old collection is scanned(the default is 10, and higher values mean that the old collectionis scanned more slowly).The third value is now meaningless and is always zero.set_threshold()
now ignores any items after the second.get_count()
andget_stats()
continue to returnthe same format of results.The only difference is that instead of the results referring tothe young, aging and old generations,the results refer to the young generationand the aging and collecting spaces of the old generation.
In summary, code that attempted to manipulate the behavior of the cycle GCmay not work exactly as intended, but it is very unlikely to be harmful.All other code will work just fine.
(Contributed by Mark Shannon ingh-108362.)
io¶
pathlib¶
Path.read_bytes
now uses unbuffered modeto open files, which is between 9% and 17% faster to read in full.(Contributed by Cody Maloney ingh-120754.)
pdb¶
pdb
now supports two backends, based on eithersys.settrace()
orsys.monitoring
.Using thepdb CLI orbreakpoint()
will always use thesys.monitoring
backend.Explicitly instantiatingpdb.Pdb
and its derived classeswill use thesys.settrace()
backend by default, which is configurable.(Contributed by Tian Gao ingh-124533.)
uuid¶
zlib¶
On Windows,zlib-ngis now used as the implementation of the
zlib
modulein the default binaries.There are no known incompatibilities betweenzlib-ng
and the previously-usedzlib
implementation.This should result in better performance at all compression levels.It is worth noting that
zlib.Z_BEST_SPEED
(1
) may result insignificantly less compression than the previous implementation,whilst also significantly reducing the time taken to compress.(Contributed by Steve Dower ingh-91349.)
Removed¶
argparse¶
Remove thetype,choices, andmetavar parametersof
BooleanOptionalAction
.These have been deprecated since Python 3.12.(Contributed by Nikita Sobolev ingh-118805.)Calling
add_argument_group()
on an argument group now raises aValueError
.Similarly,add_argument_group()
oradd_mutually_exclusive_group()
on a mutually exclusive group now both raiseValueError
s.This ‘nesting’ was never supported, often failed to work correctly,and was unintentionally exposed through inheritance.This functionality has been deprecated since Python 3.11.(Contributed by Savannah Ostrowski ingh-127186.)
ast¶
Remove the following classes, which have been deprecated aliases of
Constant
since Python 3.8 and have emitteddeprecation warnings since Python 3.12:Bytes
Ellipsis
NameConstant
Num
Str
As a consequence of these removals, user-defined
visit_Num
,visit_Str
,visit_Bytes
,visit_NameConstant
andvisit_Ellipsis
methodson customNodeVisitor
subclasses will no longer be calledwhen theNodeVisitor
subclass is visiting an AST.Define avisit_Constant
method instead.(Contributed by Alex Waygood ingh-119562.)
Remove the following deprecated properties on
ast.Constant
,which were present for compatibility with the now-removed AST classes:Constant.n
Constant.s
Use
Constant.value
instead.(Contributed by Alex Waygood ingh-119562.)
asyncio¶
Remove the following classes, methods, and functions,which have been deprecated since Python 3.12:
AbstractChildWatcher
FastChildWatcher
MultiLoopChildWatcher
PidfdChildWatcher
SafeChildWatcher
ThreadedChildWatcher
AbstractEventLoopPolicy.get_child_watcher()
AbstractEventLoopPolicy.set_child_watcher()
get_child_watcher()
set_child_watcher()
(Contributed by Kumar Aditya ingh-120804.)
asyncio.get_event_loop()
now raises aRuntimeError
if there is no current event loop,and no longer implicitly creates an event loop.(Contributed by Kumar Aditya ingh-126353.)
There’s a few patterns that use
asyncio.get_event_loop()
, mostof them can be replaced withasyncio.run()
.If you’re running an async function, simply use
asyncio.run()
.Before:
asyncdefmain():...loop=asyncio.get_event_loop()try:loop.run_until_complete(main())finally:loop.close()
After:
asyncdefmain():...asyncio.run(main())
If you need to start something, for example, a server listening on a socketand then run forever, use
asyncio.run()
and anasyncio.Event
.Before:
defstart_server(loop):...loop=asyncio.get_event_loop()try:start_server(loop)loop.run_forever()finally:loop.close()
After:
defstart_server(loop):...asyncdefmain():start_server(asyncio.get_running_loop())awaitasyncio.Event().wait()asyncio.run(main())
If you need to run something in an event loop, then run some blockingcode around it, use
asyncio.Runner
.Before:
asyncdefoperation_one():...defblocking_code():...asyncdefoperation_two():...loop=asyncio.get_event_loop()try:loop.run_until_complete(operation_one())blocking_code()loop.run_until_complete(operation_two())finally:loop.close()
After:
asyncdefoperation_one():...defblocking_code():...asyncdefoperation_two():...withasyncio.Runner()asrunner:runner.run(operation_one())blocking_code()runner.run(operation_two())
email¶
Remove
email.utils.localtime()
’sisdst parameter,which was deprecated in and has been ignored since Python 3.12.(Contributed by Hugo van Kemenade ingh-118798.)
importlib.abc¶
Remove deprecated
importlib.abc
classes:ResourceReader
(useTraversableResources
)Traversable
(useTraversable
)TraversableResources
(useTraversableResources
)
(Contributed by Jason R. Coombs and Hugo van Kemenade ingh-93963.)
itertools¶
Remove support for copy, deepcopy, and pickle operationsfrom
itertools
iterators.These have emitted aDeprecationWarning
since Python 3.12.(Contributed by Raymond Hettinger ingh-101588.)
pathlib¶
Remove support for passing additional keyword argumentsto
Path
.In previous versions, any such arguments are ignored.(Contributed by Barney Gale ingh-74033.)Remove support for passing additional positional arguments to
PurePath.relative_to()
andis_relative_to()
.In previous versions, any such arguments are joined ontoother.(Contributed by Barney Gale ingh-78707.)
pkgutil¶
Remove the
get_loader()
andfind_loader()
functions,which have been deprecated since Python 3.12.(Contributed by Bénédikt Tran ingh-97850.)
pty¶
Remove the
master_open()
andslave_open()
functions,which have been deprecated since Python 3.12.Usepty.openpty()
instead.(Contributed by Nikita Sobolev ingh-118824.)
sqlite3¶
Remove
version
andversion_info
fromthesqlite3
module;usesqlite_version
andsqlite_version_info
for the actual version number of the runtime SQLite library.(Contributed by Hugo van Kemenade ingh-118924.)Using a sequence of parameters with named placeholders nowraises a
ProgrammingError
,having been deprecated since Python 3.12.(Contributed by Erlend E. Aasland ingh-118928 andgh-101693.)
urllib¶
Remove the
Quoter
class fromurllib.parse
,which has been deprecated since Python 3.11.(Contributed by Nikita Sobolev ingh-118827.)Remove the
URLopener
andFancyURLopener
classesfromurllib.request
,which have been deprecated since Python 3.3.myopener.open()
can be replaced withurlopen()
.myopener.retrieve()
can be replaced withurlretrieve()
.Customisations to the opener classes can be replaced by passingcustomized handlers tobuild_opener()
.(Contributed by Barney Gale ingh-84850.)
Deprecated¶
New deprecations¶
Passing a complex number as thereal orimag argument in the
complex()
constructor is now deprecated;complex numbers should only be passed as a single positional argument.(Contributed by Serhiy Storchaka ingh-109218.)Passing the undocumented keyword argumentprefix_chars to the
add_argument_group()
method is now deprecated.(Contributed by Savannah Ostrowski ingh-125563.)Deprecated the
argparse.FileType
type converter.Anything relating to resource management should be handleddownstream, after the arguments have been parsed.(Contributed by Serhiy Storchaka ingh-58032.)
The
asyncio.iscoroutinefunction()
is now deprecatedand will be removed in Python 3.16;useinspect.iscoroutinefunction()
instead.(Contributed by Jiahao Li and Kumar Aditya ingh-122875.)The
asyncio
policy system is deprecatedand will be removed in Python 3.16.In particular, the following classes and functions are deprecated:Users should use
asyncio.run()
orasyncio.Runner
withtheloop_factory argument to use the desired event loop implementation.For example, to use
asyncio.SelectorEventLoop
on Windows:importasyncioasyncdefmain():...asyncio.run(main(),loop_factory=asyncio.SelectorEventLoop)
(Contributed by Kumar Aditya ingh-127949.)
codecs
:Thecodecs.open()
function is now deprecated,and will be removed in a future version of Python.Useopen()
instead.(Contributed by Inada Naoki ingh-133036.)On non-Windows platforms, setting
Structure._pack_
to use aMSVC-compatible default memory layout is now deprecated in favor of settingStructure._layout_
to'ms'
, and will be removed in Python 3.19.(Contributed by Petr Viktorin ingh-131747.)Calling
ctypes.POINTER()
on a string is now deprecated.Useincomplete typesfor self-referential structures.Also, the internalctypes._pointer_type_cache
is deprecated.Seectypes.POINTER()
for updated implementation details.(Contributed by Sergey Myrianov ingh-100926.)
functools
:Calling the Python implementation offunctools.reduce()
withfunctionorsequence as keyword arguments is now deprecated;the parameters will be made positional-only in Python 3.16.(Contributed by Kirill Podoprigora ingh-121676.)logging
:Support for custom logging handlers with thestrm argumentis now deprecated and scheduled for removal in Python 3.16.Define handlers with thestream argument instead.(Contributed by Mariusz Felisiak ingh-115032.)mimetypes
:Valid extensions are either empty or must start with ‘.’ formimetypes.MimeTypes.add_type()
.Undotted extensions are deprecated and willraise aValueError
in Python 3.16.(Contributed by Hugo van Kemenade ingh-75223.)nturl2path
:This module is now deprecated. Callurllib.request.url2pathname()
andpathname2url()
instead.(Contributed by Barney Gale ingh-125866.)os
:Theos.popen()
andos.spawn*
functionsare nowsoft deprecated.They should no longer be used to write new code.Thesubprocess
module is recommended instead.(Contributed by Victor Stinner ingh-120743.)pathlib
:pathlib.PurePath.as_uri()
is now deprecatedand scheduled for removal in Python 3.19.Usepathlib.Path.as_uri()
instead.(Contributed by Barney Gale ingh-123599.)pdb
:The undocumentedpdb.Pdb.curframe_locals
attribute is now a deprecatedread-only property, which will be removed in a future version of Python.The low overhead dynamic frame locals access added in Python 3.13 byPEP 667means the frame locals cache reference previously stored in this attributeis no longer needed. Derived debuggers should accesspdb.Pdb.curframe.f_locals
directly in Python 3.13 and later versions.(Contributed by Tian Gao ingh-124369 andgh-125951.)symtable
:Deprecatesymtable.Class.get_methods()
due to the lack of interest,scheduled for removal in Python 3.16.(Contributed by Bénédikt Tran ingh-119698.)tkinter
:Thetkinter.Variable
methodstrace_variable()
,trace_vdelete()
andtrace_vinfo()
are now deprecated.Usetrace_add()
,trace_remove()
andtrace_info()
instead.(Contributed by Serhiy Storchaka ingh-120220.)urllib.parse
:Accepting objects with false values (like0
and[]
) except emptystrings, bytes-like objects andNone
inparse_qsl()
andparse_qs()
is now deprecated.(Contributed by Serhiy Storchaka ingh-116897.)
Pending removal in Python 3.15¶
The import system:
Setting
__cached__
on a module whilefailing to set__spec__.cached
is deprecated. In Python 3.15,__cached__
will cease to be set ortake into consideration by the import system or standard library. (gh-97879)Setting
__package__
on a module whilefailing to set__spec__.parent
is deprecated. In Python 3.15,__package__
will cease to be set ortake into consideration by the import system or standard library. (gh-97879)
The undocumented
ctypes.SetPointerType()
functionhas been deprecated since Python 3.13.
The obsolete and rarely used
CGIHTTPRequestHandler
has been deprecated since Python 3.13.No direct replacement exists.Anything is better than CGI to interfacea web server with a request handler.The
--cgi
flag to thepython -m http.servercommand-line interface has been deprecated since Python 3.13.
load_module()
method: useexec_module()
instead.
The
getdefaultlocale()
functionhas been deprecated since Python 3.11.Its removal was originally planned for Python 3.13 (gh-90817),but has been postponed to Python 3.15.Usegetlocale()
,setlocale()
,andgetencoding()
instead.(Contributed by Hugo van Kemenade ingh-111187.)
.PurePath.is_reserved()
has been deprecated since Python 3.13.Useos.path.isreserved()
to detect reserved paths on Windows.
platform.java_ver()
has been deprecated since Python 3.13.This function is only useful for Jython support, has a confusing API,and is largely untested.
Thecheck_home argument of
sysconfig.is_python_build()
has beendeprecated since Python 3.12.
RLock()
will take no arguments in Python 3.15.Passing any arguments has been deprecated since Python 3.14,as the Python version does not permit any arguments,but the C version allows any number of positional or keyword arguments,ignoring every argument.
types.CodeType
: Accessingco_lnotab
wasdeprecated inPEP 626since 3.10 and was planned to be removed in 3.12,but it only got a properDeprecationWarning
in 3.12.May be removed in 3.15.(Contributed by Nikita Sobolev ingh-101866.)
The undocumented keyword argument syntax for creating
NamedTuple
classes(for example,Point=NamedTuple("Point",x=int,y=int)
)has been deprecated since Python 3.13.Use the class-based syntax or the functional syntax instead.When using the functional syntax of
TypedDict
s, failingto pass a value to thefields parameter (TD=TypedDict("TD")
) orpassingNone
(TD=TypedDict("TD",None)
) has been deprecatedsince Python 3.13.UseclassTD(TypedDict):pass
orTD=TypedDict("TD",{})
to create a TypedDict with zero field.The
typing.no_type_check_decorator()
decorator functionhas been deprecated since Python 3.13.After eight years in thetyping
module,it has yet to be supported by any major type checker.
sre_compile
,sre_constants
andsre_parse
modules.wave
:The
getmark()
,setmark()
andgetmarkers()
methods oftheWave_read
andWave_write
classeshave been deprecated since Python 3.13.
zipimport.zipimporter.load_module()
has been deprecated sincePython 3.10. Useexec_module()
instead.(gh-125746.)
Pending removal in Python 3.16¶
The import system:
Setting
__loader__
on a module whilefailing to set__spec__.loader
is deprecated. In Python 3.16,__loader__
will cease to be set ortaken into consideration by the import system or the standard library.
The
'u'
format code (wchar_t
)has been deprecated in documentation since Python 3.3and at runtime since Python 3.13.Use the'w'
format code (Py_UCS4
)for Unicode characters instead.
asyncio.iscoroutinefunction()
is deprecatedand will be removed in Python 3.16;useinspect.iscoroutinefunction()
instead.(Contributed by Jiahao Li and Kumar Aditya ingh-122875.)asyncio
policy system is deprecated and will be removed in Python 3.16.In particular, the following classes and functions are deprecated:Users should use
asyncio.run()
orasyncio.Runner
withloop_factory to use the desired event loop implementation.For example, to use
asyncio.SelectorEventLoop
on Windows:importasyncioasyncdefmain():...asyncio.run(main(),loop_factory=asyncio.SelectorEventLoop)
(Contributed by Kumar Aditya ingh-127949.)
Bitwise inversion on boolean types,
~True
or~False
has been deprecated since Python 3.12,as it produces surprising and unintuitive results (-2
and-1
).Usenotx
instead for the logical negation of a Boolean.In the rare case that you need the bitwise inversion ofthe underlying integer, convert toint
explicitly (~int(x)
).
Calling the Python implementation of
functools.reduce()
withfunctionorsequence as keyword arguments has been deprecated since Python 3.14.
Support for custom logging handlers with thestrm argument is deprecatedand scheduled for removal in Python 3.16. Define handlers with thestreamargument instead. (Contributed by Mariusz Felisiak ingh-115032.)
Valid extensions start with a ‘.’ or are empty for
mimetypes.MimeTypes.add_type()
.Undotted extensions are deprecated and willraise aValueError
in Python 3.16.(Contributed by Hugo van Kemenade ingh-75223.)
The
ExecError
exceptionhas been deprecated since Python 3.14.It has not been used by any function inshutil
since Python 3.4,and is now an alias ofRuntimeError
.
The
Class.get_methods
methodhas been deprecated since Python 3.14.
sys
:The
_enablelegacywindowsfsencoding()
functionhas been deprecated since Python 3.13.Use thePYTHONLEGACYWINDOWSFSENCODING
environment variable instead.
The
sysconfig.expand_makefile_vars()
functionhas been deprecated since Python 3.14.Use thevars
argument ofsysconfig.get_paths()
instead.
The undocumented and unused
TarFile.tarfile
attributehas been deprecated since Python 3.13.
Pending removal in Python 3.17¶
collections.abc.ByteString
is scheduled for removal in Python 3.17.Use
isinstance(obj,collections.abc.Buffer)
to test ifobj
implements thebuffer protocol at runtime. For usein type annotations, either useBuffer
or a unionthat explicitly specifies the types your code supports (e.g.,bytes|bytearray|memoryview
).ByteString
was originally intended to be an abstract class thatwould serve as a supertype of bothbytes
andbytearray
.However, since the ABC never had any methods, knowing that an object was aninstance ofByteString
never actually told you anything usefulabout the object. Other common buffer types such asmemoryview
were also never understood as subtypes ofByteString
(either atruntime or by static type checkers).SeePEP 688 for more details.(Contributed by Shantanu Jain ingh-91896.)
Before Python 3.14, old-style unions were implemented using the private class
typing._UnionGenericAlias
. This class is no longer needed for the implementation,but it has been retained for backward compatibility, with removal scheduled for Python3.17. Users should use documented introspection helpers liketyping.get_origin()
andtyping.get_args()
instead of relying on private implementation details.typing.ByteString
, deprecated since Python 3.9, is scheduled for removal inPython 3.17.Use
isinstance(obj,collections.abc.Buffer)
to test ifobj
implements thebuffer protocol at runtime. For usein type annotations, either useBuffer
or a unionthat explicitly specifies the types your code supports (e.g.,bytes|bytearray|memoryview
).ByteString
was originally intended to be an abstract class thatwould serve as a supertype of bothbytes
andbytearray
.However, since the ABC never had any methods, knowing that an object was aninstance ofByteString
never actually told you anything usefulabout the object. Other common buffer types such asmemoryview
were also never understood as subtypes ofByteString
(either atruntime or by static type checkers).SeePEP 688 for more details.(Contributed by Shantanu Jain ingh-91896.)
Pending removal in Python 3.19¶
In hash function constructors such as
new()
or thedirect hash-named constructors such asmd5()
andsha256()
, their optional initial data parameter couldalso be passed a keyword argument nameddata=
orstring=
invarioushashlib
implementations.Support for the
string
keyword argument name is now deprecatedand slated for removal in Python 3.19.Before Python 3.13, the
string
keyword parameter was not correctlysupported depending on the backend implementation of hash functions.Prefer passing the initial data as a positional argument for maximumbackwards compatibility.
Pending removal in Python 3.20¶
The
__version__
attribute has been deprecated in these standard librarymodules and will be removed in Python 3.20.Usesys.version_info
instead.ctypes.macholib
logging
(__date__
also deprecated)
(Contributed by Hugo van Kemenade ingh-76007.)
Pending removal in future versions¶
The following APIs will be removed in the future,although there is currently no date scheduled for their removal.
Nesting argument groups and nesting mutually exclusivegroups are deprecated.
Passing the undocumented keyword argumentprefix_chars to
add_argument_group()
is nowdeprecated.The
argparse.FileType
type converter is deprecated.
Generators:
throw(type,exc,tb)
andathrow(type,exc,tb)
signature is deprecated: usethrow(exc)
andathrow(exc)
instead,the single argument signature.Currently Python accepts numeric literals immediately followed by keywords,for example
0inx
,1orx
,0if1else2
. It allows confusing andambiguous expressions like[0x1forxiny]
(which can be interpreted as[0x1forxiny]
or[0x1forxiny]
). A syntax warning is raisedif the numeric literal is immediately followed by one of keywordsand
,else
,for
,if
,in
,is
andor
. In a future release itwill be changed to a syntax error. (gh-87999)Support for
__index__()
and__int__()
method returning non-int type:these methods will be required to return an instance of a strict subclass ofint
.Support for
__float__()
method returning a strict subclass offloat
: these methods will be required to return an instance offloat
.Support for
__complex__()
method returning a strict subclass ofcomplex
: these methods will be required to return an instance ofcomplex
.Delegation of
int()
to__trunc__()
method.Passing a complex number as thereal orimag argument in the
complex()
constructor is now deprecated; it should only be passedas a single positional argument.(Contributed by Serhiy Storchaka ingh-109218.)
calendar
:calendar.January
andcalendar.February
constants aredeprecated and replaced bycalendar.JANUARY
andcalendar.FEBRUARY
.(Contributed by Prince Roshan ingh-103636.)codecs
: useopen()
instead ofcodecs.open()
. (gh-133038)codeobject.co_lnotab
: use thecodeobject.co_lines()
methodinstead.utcnow()
:usedatetime.datetime.now(tz=datetime.UTC)
.utcfromtimestamp()
:usedatetime.datetime.fromtimestamp(timestamp,tz=datetime.UTC)
.
gettext
: Plural value must be an integer.cache_from_source()
debug_override parameter isdeprecated: use theoptimization parameter instead.
EntryPoints
tuple interface.Implicit
None
on return values.
logging
: thewarn()
method has been deprecatedsince Python 3.3, usewarning()
instead.mailbox
: Use of StringIO input and text mode is deprecated, useBytesIO and binary mode instead.os
: Callingos.register_at_fork()
in multi-threaded process.pydoc.ErrorDuringImport
: A tuple value forexc_info parameter isdeprecated, use an exception instance.re
: More strict rules are now applied for numerical group referencesand group names in regular expressions. Only sequence of ASCII digits is nowaccepted as a numerical reference. The group name in bytes patterns andreplacement strings can now only contain ASCII letters and digits andunderscore.(Contributed by Serhiy Storchaka ingh-91760.)shutil
:rmtree()
’sonerror parameter is deprecated inPython 3.12; use theonexc parameter instead.ssl
options and protocols:ssl.SSLContext
without protocol argument is deprecated.ssl.SSLContext
:set_npn_protocols()
andselected_npn_protocol()
are deprecated: use ALPNinstead.ssl.OP_NO_SSL*
optionsssl.OP_NO_TLS*
optionsssl.PROTOCOL_SSLv3
ssl.PROTOCOL_TLS
ssl.PROTOCOL_TLSv1
ssl.PROTOCOL_TLSv1_1
ssl.PROTOCOL_TLSv1_2
ssl.TLSVersion.SSLv3
ssl.TLSVersion.TLSv1
ssl.TLSVersion.TLSv1_1
threading
methods:threading.Condition.notifyAll()
: usenotify_all()
.threading.Event.isSet()
: useis_set()
.threading.Thread.isDaemon()
,threading.Thread.setDaemon()
:usethreading.Thread.daemon
attribute.threading.Thread.getName()
,threading.Thread.setName()
:usethreading.Thread.name
attribute.threading.currentThread()
: usethreading.current_thread()
.threading.activeCount()
: usethreading.active_count()
.
The internal class
typing._UnionGenericAlias
is no longer used to implementtyping.Union
. To preserve compatibility with users using this privateclass, a compatibility shim will be provided until at least Python 3.17. (Contributed byJelle Zijlstra ingh-105499.)unittest.IsolatedAsyncioTestCase
: it is deprecated to return a valuethat is notNone
from a test case.urllib.parse
deprecated functions:urlparse()
insteadsplitattr()
splithost()
splitnport()
splitpasswd()
splitport()
splitquery()
splittag()
splittype()
splituser()
splitvalue()
to_bytes()
wsgiref
:SimpleHandler.stdout.write()
should not do partialwrites.xml.etree.ElementTree
: Testing the truth value of anElement
is deprecated. In a future release itwill always returnTrue
. Prefer explicitlen(elem)
orelemisnotNone
tests instead.sys._clear_type_cache()
is deprecated:usesys._clear_internal_caches()
instead.
CPython bytecode changes¶
Replaced the opcode
BINARY_SUBSCR
by theBINARY_OP
opcode with theNB_SUBSCR
oparg.(Contributed by Irit Katriel ingh-100239.)Add the
BUILD_INTERPOLATION
andBUILD_TEMPLATE
opcodes to construct newInterpolation
andTemplate
instances, respectively.(Contributed by Lysandros Nikolaou and others ingh-132661;see alsoPEP 750: Template strings).Remove the
BUILD_CONST_KEY_MAP
opcode.UseBUILD_MAP
instead.(Contributed by Mark Shannon ingh-122160.)Replace the
LOAD_ASSERTION_ERROR
opcode withLOAD_COMMON_CONSTANT
and add support for loadingNotImplementedError
.Add the
LOAD_FAST_BORROW
andLOAD_FAST_BORROW_LOAD_FAST_BORROW
opcodes to reduce reference counting overhead when the interpreter can provethat the reference in the frame outlives the reference loaded onto the stack.(Contributed by Matt Page ingh-130704.)Add the
LOAD_SMALL_INT
opcode, which pushes a small integerequal to theoparg
to the stack.TheRETURN_CONST
opcode is removed as it is no longer used.(Contributed by Mark Shannon ingh-125837.)Add the new
LOAD_SPECIAL
instruction.Generate code forwith
andasyncwith
statementsusing the new instruction.Removed theBEFORE_WITH
andBEFORE_ASYNC_WITH
instructions.(Contributed by Mark Shannon ingh-120507.)Add the
POP_ITER
opcode to support ‘virtual’ iterators.(Contributed by Mark Shannon ingh-132554.)
Pseudo-instructions¶
Add the
ANNOTATIONS_PLACEHOLDER
pseudo instructionto support partially executed module-level annotations withdeferred evaluation of annotations.(Contributed by Jelle Zijlstra ingh-130907.)Add the
BINARY_OP_EXTEND
pseudo instruction,which executes a pair of functions (guard and specialization functions)accessed from the inline cache.(Contributed by Irit Katriel ingh-100239.)Add three specializations for
CALL_KW
;CALL_KW_PY
for calls to Python functions,CALL_KW_BOUND_METHOD
for calls to bound methods, andCALL_KW_NON_PY
for all other calls.(Contributed by Mark Shannon ingh-118093.)Add the
JUMP_IF_TRUE
andJUMP_IF_FALSE
pseudo instructions,conditional jumps which do not impact the stack.Replaced by the sequenceCOPY1
,TO_BOOL
,POP_JUMP_IF_TRUE/FALSE
.(Contributed by Irit Katriel ingh-124285.)Add the
LOAD_CONST_MORTAL
pseudo instruction.(Contributed by Mark Shannon ingh-128685.)Add the
LOAD_CONST_IMMORTAL
pseudo instruction,which does the same asLOAD_CONST
, but is more efficientfor immortal objects.(Contributed by Mark Shannon ingh-125837.)Add the
NOT_TAKEN
pseudo instruction, used bysys.monitoring
to record branch events (such asBRANCH_LEFT
).(Contributed by Mark Shannon ingh-122548.)
C API changes¶
Python configuration C API¶
Add aPyInitConfig C API to configure the Pythoninitialization without relying on C structures and the ability to makeABI-compatible changes in the future.
Complete thePEP 587PyConfig C API by addingPyInitConfig_AddModule()
which can be used to add a built-in extensionmodule; a feature previously referred to as the “inittab”.
AddPyConfig_Get()
andPyConfig_Set()
functions to get and setthe current runtime configuration.
PEP 587 ‘Python Initialization Configuration’ unified all the waysto configure Python’s initialization. This PEP also unifies the configurationof Python’s preinitialization and initialization in a single API.Moreover, this PEP only provides a single choice to embed Python,instead of having two ‘Python’ and ‘Isolated’ choices (PEP 587),to further simplify the API.
The lower level PEP 587 PyConfig API remains available for use caseswith an intentionally higher level of coupling to CPython implementation details(such as emulating the full functionality of CPython’s CLI, including itsconfiguration mechanisms).
(Contributed by Victor Stinner ingh-107954.)
New features in the C API¶
Add
Py_PACK_VERSION()
andPy_PACK_FULL_VERSION()
,two new macros for bit-packing Python version numbers.This is useful for comparisons withPy_Version
orPY_VERSION_HEX
.(Contributed by Petr Viktorin ingh-128629.)Add
PyBytes_Join(sep,iterable)
function,similar tosep.join(iterable)
in Python.(Contributed by Victor Stinner ingh-121645.)Add functions to manipulate the configuration of the currentruntime Python interpreter(PEP 741: Python configuration C API):
(Contributed by Victor Stinner ingh-107954.)
Add functions to configure Python initialization(PEP 741: Python configuration C API):
(Contributed by Victor Stinner ingh-107954.)
Add
Py_fopen()
function to open a file.This works similarly to the standard Cfopen()
function,instead accepting a Python object for thepath parameterand setting an exception on error.The corresponding newPy_fclose()
function should be usedto close a file.(Contributed by Victor Stinner ingh-127350.)Add
Py_HashBuffer()
to compute and return the hash value of a buffer.(Contributed by Antoine Pitrou and Victor Stinner ingh-122854.)Add
PyImport_ImportModuleAttr()
andPyImport_ImportModuleAttrString()
helper functions to import a moduleand get an attribute of the module.(Contributed by Victor Stinner ingh-128911.)Add
PyIter_NextItem()
to replacePyIter_Next()
,which has an ambiguous return value.(Contributed by Irit Katriel and Erlend Aasland ingh-105201.)Add
PyLong_GetSign()
function to get the sign ofint
objects.(Contributed by Sergey B Kirpichev ingh-116560.)Add
PyLong_IsPositive()
,PyLong_IsNegative()
andPyLong_IsZero()
for checking ifPyLongObject
is positive, negative, or zero, respectively.(Contributed by James Roy and Sergey B Kirpichev ingh-126061.)Add new functions to convert C
<stdint.h>
numbers to/fromPythonint
objects:(Contributed by Victor Stinner ingh-120389.)
Add a new import and export API for Python
int
objects(PEP 757):(Contributed by Sergey B Kirpichev and Victor Stinner ingh-102471.)
Add
PyMonitoring_FireBranchLeftEvent()
andPyMonitoring_FireBranchRightEvent()
for generatingBRANCH_LEFT
andBRANCH_RIGHT
events, respectively.(Contributed by Mark Shannon ingh-122548.)Add
PyType_Freeze()
function to make a type immutable.(Contributed by Victor Stinner ingh-121654.)Add
PyType_GetBaseByToken()
andPy_tp_token
slotfor easier superclass identification, which attempts to resolve thetype checking issue mentioned inPEP 630.(Contributed ingh-124153.)Add a new
PyUnicode_Equal()
function to test if twostrings are equal.The function is also added to the Limited C API.(Contributed by Victor Stinner ingh-124502.)Add a new
PyUnicodeWriter
API to create a Pythonstr
object, with the following functions:(Contributed by Victor Stinner ingh-119182.)
The
k
andK
formats inPyArg_ParseTuple()
andsimilar functions now use__index__()
if available,like all other integer formats.(Contributed by Serhiy Storchaka ingh-112068.)Add support for a new
p
format unit inPy_BuildValue()
that produces a Pythonbool
object from a C integer.(Contributed by Pablo Galindo inbpo-45325.)Add
PyUnstable_IsImmortal()
for determining ifan object isimmortal, for debugging purposes.(Contributed by Peter Bierma ingh-128509.)Add
PyUnstable_Object_EnableDeferredRefcount()
for enablingdeferred reference counting, as outlined inPEP 703.Add
PyUnstable_Object_IsUniquelyReferenced()
asa replacement forPy_REFCNT(op)==1
onfree threaded builds.(Contributed by Peter Bierma ingh-133140.)Add
PyUnstable_Object_IsUniqueReferencedTemporary()
todetermine if an object is a unique temporary object on theinterpreter’s operand stack.This can be used in some cases as a replacement for checkingifPy_REFCNT()
is1
for Python objects passedas arguments to C API functions.(Contributed by Sam Gross ingh-133164.)
Limited C API changes¶
In the limited C API version 3.14 and newer,
Py_TYPE()
andPy_REFCNT()
are now implemented as an opaque function callto hide implementation details.(Contributed by Victor Stinner ingh-120600 andgh-124127.)Remove the
PySequence_Fast_GET_SIZE
,PySequence_Fast_GET_ITEM
,andPySequence_Fast_ITEMS
macros from the limited C API, since they have always been brokenin the limited C API.(Contributed by Victor Stinner ingh-91417.)
Removed C APIs¶
Creating
immutabletypes
withmutable bases was deprecated in Python 3.12,and now raises aTypeError
.(Contributed by Nikita Sobolev ingh-119775.)Remove
PyDictObject.ma_version_tag
member, which was deprecatedin Python 3.12.Use thePyDict_AddWatcher()
API instead.(Contributed by Sam Gross ingh-124296.)Remove the private
_Py_InitializeMain()
function.It was aprovisional API added to Python 3.8 byPEP 587.(Contributed by Victor Stinner ingh-129033.)Remove the undocumented APIs
Py_C_RECURSION_LIMIT
andPyThreadState.c_recursion_remaining
.These were added in 3.13 and have been removed without deprecation.UsePy_EnterRecursiveCall()
to guard against runawayrecursion in C code.(Removed by Petr Viktorin ingh-133079, see alsogh-130396.)
Deprecated C APIs¶
The
Py_HUGE_VAL
macro is nowsoft deprecated.UsePy_INFINITY
instead.(Contributed by Sergey B Kirpichev ingh-120026.)The
Py_IS_NAN
,Py_IS_INFINITY
,andPy_IS_FINITE
macros are nowsoft deprecated.Useisnan
,isinf
andisfinite
instead, available frommath.h
since C99.(Contributed by Sergey B Kirpichev ingh-119613.)Non-tuple sequences are now deprecated as argument for the
(items)
format unit inPyArg_ParseTuple()
and otherargumentparsing functions ifitems contains format unitswhich store aborrowed buffer or aborrowed reference.(Contributed by Serhiy Storchaka ingh-50333.)The
_PyMonitoring_FireBranchEvent
function is now deprecatedand should be replaced with calls toPyMonitoring_FireBranchLeftEvent()
andPyMonitoring_FireBranchRightEvent()
.The previously undocumented function
PySequence_In()
isnowsoft deprecated.UsePySequence_Contains()
instead.(Contributed by Yuki Kobayashi ingh-127896.)
Pending removal in Python 3.15¶
The
PyImport_ImportModuleNoBlock()
:UsePyImport_ImportModule()
instead.PyWeakref_GetObject()
andPyWeakref_GET_OBJECT()
:UsePyWeakref_GetRef()
instead. Thepythoncapi-compat project can be used to getPyWeakref_GetRef()
on Python 3.12 and older.Py_UNICODE
type and thePy_UNICODE_WIDE
macro:Usewchar_t
instead.PyUnicode_AsDecodedObject()
:UsePyCodec_Decode()
instead.PyUnicode_AsDecodedUnicode()
:UsePyCodec_Decode()
instead; Note that some codecs (for example, “base64”)may return a type other thanstr
, such asbytes
.PyUnicode_AsEncodedObject()
:UsePyCodec_Encode()
instead.PyUnicode_AsEncodedUnicode()
:UsePyCodec_Encode()
instead; Note that some codecs (for example, “base64”)may return a type other thanbytes
, such asstr
.Python initialization functions, deprecated in Python 3.13:
Py_GetPath()
:UsePyConfig_Get("module_search_paths")
(sys.path
) instead.Py_GetPrefix()
:UsePyConfig_Get("base_prefix")
(sys.base_prefix
) instead. UsePyConfig_Get("prefix")
(sys.prefix
) ifvirtual environments need to be handled.Py_GetExecPrefix()
:UsePyConfig_Get("base_exec_prefix")
(sys.base_exec_prefix
) instead. UsePyConfig_Get("exec_prefix")
(sys.exec_prefix
) ifvirtual environments need tobe handled.Py_GetProgramFullPath()
:UsePyConfig_Get("executable")
(sys.executable
) instead.Py_GetProgramName()
:UsePyConfig_Get("executable")
(sys.executable
) instead.Py_GetPythonHome()
:UsePyConfig_Get("home")
or thePYTHONHOME
environment variable instead.
Thepythoncapi-compat project can be used to get
PyConfig_Get()
on Python 3.13 and older.Functions to configure Python’s initialization, deprecated in Python 3.11:
PySys_SetArgvEx()
:SetPyConfig.argv
instead.PySys_SetArgv()
:SetPyConfig.argv
instead.Py_SetProgramName()
:SetPyConfig.program_name
instead.Py_SetPythonHome()
:SetPyConfig.home
instead.PySys_ResetWarnOptions()
:Clearsys.warnoptions
andwarnings.filters
instead.
The
Py_InitializeFromConfig()
API should be used withPyConfig
instead.Global configuration variables:
Py_DebugFlag
:UsePyConfig.parser_debug
orPyConfig_Get("parser_debug")
instead.Py_VerboseFlag
:UsePyConfig.verbose
orPyConfig_Get("verbose")
instead.Py_QuietFlag
:UsePyConfig.quiet
orPyConfig_Get("quiet")
instead.Py_InteractiveFlag
:UsePyConfig.interactive
orPyConfig_Get("interactive")
instead.Py_InspectFlag
:UsePyConfig.inspect
orPyConfig_Get("inspect")
instead.Py_OptimizeFlag
:UsePyConfig.optimization_level
orPyConfig_Get("optimization_level")
instead.Py_NoSiteFlag
:UsePyConfig.site_import
orPyConfig_Get("site_import")
instead.Py_BytesWarningFlag
:UsePyConfig.bytes_warning
orPyConfig_Get("bytes_warning")
instead.Py_FrozenFlag
:UsePyConfig.pathconfig_warnings
orPyConfig_Get("pathconfig_warnings")
instead.Py_IgnoreEnvironmentFlag
:UsePyConfig.use_environment
orPyConfig_Get("use_environment")
instead.Py_DontWriteBytecodeFlag
:UsePyConfig.write_bytecode
orPyConfig_Get("write_bytecode")
instead.Py_NoUserSiteDirectory
:UsePyConfig.user_site_directory
orPyConfig_Get("user_site_directory")
instead.Py_UnbufferedStdioFlag
:UsePyConfig.buffered_stdio
orPyConfig_Get("buffered_stdio")
instead.Py_HashRandomizationFlag
:UsePyConfig.use_hash_seed
andPyConfig.hash_seed
orPyConfig_Get("hash_seed")
instead.Py_IsolatedFlag
:UsePyConfig.isolated
orPyConfig_Get("isolated")
instead.Py_LegacyWindowsFSEncodingFlag
:UsePyPreConfig.legacy_windows_fs_encoding
orPyConfig_Get("legacy_windows_fs_encoding")
instead.Py_LegacyWindowsStdioFlag
:UsePyConfig.legacy_windows_stdio
orPyConfig_Get("legacy_windows_stdio")
instead.Py_FileSystemDefaultEncoding
,Py_HasFileSystemDefaultEncoding
:UsePyConfig.filesystem_encoding
orPyConfig_Get("filesystem_encoding")
instead.Py_FileSystemDefaultEncodeErrors
:UsePyConfig.filesystem_errors
orPyConfig_Get("filesystem_errors")
instead.Py_UTF8Mode
:UsePyPreConfig.utf8_mode
orPyConfig_Get("utf8_mode")
instead.(seePy_PreInitialize()
)
The
Py_InitializeFromConfig()
API should be used withPyConfig
to set these options. OrPyConfig_Get()
can beused to get these options at runtime.
Pending removal in Python 3.16¶
The bundled copy of
libmpdec
.
Pending removal in Python 3.18¶
The following private functions are deprecatedand planned for removal in Python 3.18:
_PyBytes_Join()
: usePyBytes_Join()
._PyDict_GetItemStringWithError()
: usePyDict_GetItemStringRef()
._PyDict_Pop()
: usePyDict_Pop()
._PyLong_Sign()
: usePyLong_GetSign()
._PyLong_FromDigits()
and_PyLong_New()
:usePyLongWriter_Create()
._PyThreadState_UncheckedGet()
: usePyThreadState_GetUnchecked()
._PyUnicode_AsString()
: usePyUnicode_AsUTF8()
._PyUnicodeWriter_Init()
:replace_PyUnicodeWriter_Init(&writer)
withwriter=PyUnicodeWriter_Create(0)
._PyUnicodeWriter_Finish()
:replace_PyUnicodeWriter_Finish(&writer)
withPyUnicodeWriter_Finish(writer)
._PyUnicodeWriter_Dealloc()
:replace_PyUnicodeWriter_Dealloc(&writer)
withPyUnicodeWriter_Discard(writer)
._PyUnicodeWriter_WriteChar()
:replace_PyUnicodeWriter_WriteChar(&writer,ch)
withPyUnicodeWriter_WriteChar(writer,ch)
._PyUnicodeWriter_WriteStr()
:replace_PyUnicodeWriter_WriteStr(&writer,str)
withPyUnicodeWriter_WriteStr(writer,str)
._PyUnicodeWriter_WriteSubstring()
:replace_PyUnicodeWriter_WriteSubstring(&writer,str,start,end)
withPyUnicodeWriter_WriteSubstring(writer,str,start,end)
._PyUnicodeWriter_WriteASCIIString()
:replace_PyUnicodeWriter_WriteASCIIString(&writer,str)
withPyUnicodeWriter_WriteASCII(writer,str)
._PyUnicodeWriter_WriteLatin1String()
:replace_PyUnicodeWriter_WriteLatin1String(&writer,str)
withPyUnicodeWriter_WriteUTF8(writer,str)
._PyUnicodeWriter_Prepare()
: (no replacement)._PyUnicodeWriter_PrepareKind()
: (no replacement)._Py_HashPointer()
: usePy_HashPointer()
._Py_fopen_obj()
: usePy_fopen()
.
Thepythoncapi-compat project can be used to getthese new public functions on Python 3.13 and older.(Contributed by Victor Stinner ingh-128863.)
Pending removal in future versions¶
The following APIs are deprecated and will be removed,although there is currently no date scheduled for their removal.
Py_TPFLAGS_HAVE_FINALIZE
:Unneeded since Python 3.8.PyErr_Fetch()
:UsePyErr_GetRaisedException()
instead.PyErr_NormalizeException()
:UsePyErr_GetRaisedException()
instead.PyErr_Restore()
:UsePyErr_SetRaisedException()
instead.PyModule_GetFilename()
:UsePyModule_GetFilenameObject()
instead.PyOS_AfterFork()
:UsePyOS_AfterFork_Child()
instead.PySlice_GetIndicesEx()
:UsePySlice_Unpack()
andPySlice_AdjustIndices()
instead.PyUnicode_READY()
:Unneeded since Python 3.12PyErr_Display()
:UsePyErr_DisplayException()
instead._PyErr_ChainExceptions()
:Use_PyErr_ChainExceptions1()
instead.PyBytesObject.ob_shash
member:callPyObject_Hash()
instead.Thread Local Storage (TLS) API:
PyThread_create_key()
:UsePyThread_tss_alloc()
instead.PyThread_delete_key()
:UsePyThread_tss_free()
instead.PyThread_set_key_value()
:UsePyThread_tss_set()
instead.PyThread_get_key_value()
:UsePyThread_tss_get()
instead.PyThread_delete_key_value()
:UsePyThread_tss_delete()
instead.PyThread_ReInitTLS()
:Unneeded since Python 3.7.
Build changes¶
PEP 776: Emscripten is now an officially supported platform attier 3. As a part of this effort, more than 25 bugs inEmscripten libc were fixed. Emscripten now includes supportfor
ctypes
,termios
, andfcntl
, as well asexperimental support for the newdefault interactive shell.(Contributed by R. Hood Chatham ingh-127146,gh-127683, andgh-136931.)Official Android binary releases are now provided onpython.org.
GNU Autoconf 2.72 is now required to generate
configure
.(Contributed by Erlend Aasland ingh-115765.)wasm32-unknown-emscripten
is now aPEP 11 tier 3 platform.(Contributed by R. Hood Chatham ingh-127146,gh-127683, andgh-136931.)#pragma
-based linking withpython3*.lib
can now be switched offwithPy_NO_LINK_LIB.(Contributed by Jean-Christophe Fillion-Robin ingh-82909.)CPython now enables a set of recommended compiler options by defaultfor improved security.Use the
--disable-safety
configure
option to disable them,or the--enable-slower-safety
option for a larger setof compiler options, albeit with a performance cost.The
WITH_FREELISTS
macro and--without-freelists
configure
option have been removed.The new
configure
option--with-tail-call-interp
may be used to enable the experimental tail call interpreter.SeeA new type of interpreter for further details.To disable the new remote debugging support, use the
--without-remote-debug
configure
option.This may be useful for security reasons.iOS and macOS apps can now be configured to redirect
stdout
andstderr
content to the system log.(Contributed by Russell Keith-Magee ingh-127592.)The iOS testbed is now able to stream test output while the test is running.The testbed can also be used to run the test suite of projects other thanCPython itself.(Contributed by Russell Keith-Magee ingh-127592.)
build-details.json
¶
Installations of Python now contain a new file,build-details.json
.This is a static JSON document containing build details for CPython,to allow for introspection without needing to run code.This is helpful for use-cases such as Python launchers, cross-compilation,and so on.
build-details.json
must be installed in the platform-independentstandard library directory. This corresponds to the‘stdlib’sysconfig
installation path,which can be found by runningsysconfig.get_path('stdlib')
.
See also
PEP 739 –build-details.json
1.0 – a static description filefor Python build details
Discontinuation of PGP signatures¶
PGP (Pretty Good Privacy) signatures will not be providedfor releases of Python 3.14 or future versions.To verify CPython artifacts, users must useSigstore verification materials.Releases have been signed usingSigstore since Python 3.11.
This change in release process was specified inPEP 761.
Free-threaded Python is officially supported¶
The free-threaded build of Python is now supported and no longer experimental.This is the start ofphase II wherefree-threaded Python is officially supported but still optional.
The free-threading team are confident that the project is on the right path,and appreciate the continued dedication from everyone working to makefree-threading ready for broader adoption across the Python community.
With these recommendations and the acceptance of this PEP, the Python developercommunity should broadly advertise that free-threading is a supportedPython build option now and into the future, and that it will not be removedwithout a proper deprecation schedule.
Any decision to transition tophase III,with free-threading as the default or sole build of Python is still undecided,and dependent on many factors both within CPython itself and the community.This decision is for the future.
Binary releases for the experimental just-in-time compiler¶
The official macOS and Windows release binaries now include anexperimentaljust-in-time (JIT) compiler. Although it isnot recommended for productionuse, it can be tested by settingPYTHON_JIT=1
as anenvironment variable. Downstream source builds and redistributors can use the--enable-experimental-jit=yes-off
configuration option for similarbehavior.
The JIT is at an early stage and still in active development. As such, thetypical performance impact of enabling it can range from 10% slower to 20%faster, depending on workload. To aid in testing and evaluation, a set ofintrospection functions has been provided in thesys._jit
namespace.sys._jit.is_available()
can be used to determine if the current executablesupports JIT compilation, whilesys._jit.is_enabled()
can be used to tellif JIT compilation has been enabled for the current process.
Currently, the most significant missing functionality is that native debuggersand profilers likegdb
andperf
are unable to unwind through JIT frames(Python debuggers and profilers, likepdb
orprofile
, continue towork without modification). Free-threaded builds do not support JIT compilation.
Please report any bugs or major performance regressions that you encounter!
See also
Porting to Python 3.14¶
This section lists previously described changes and other bugfixesthat may require changes to your code.
Changes in the Python API¶
On Unix platforms other than macOS,forkserver is now the defaultstart method for
multiprocessing
andProcessPoolExecutor
, instead offork.If you encounter
NameError
s or pickling errors coming out ofmultiprocessing
orconcurrent.futures
, see theforkserver restrictions.This change does not affect Windows or macOS, where‘spawn’ remains the default start method.
functools.partial
is now a method descriptor.Wrap it instaticmethod()
if you want to preserve the old behavior.(Contributed by Serhiy Storchaka and Dominykas Grigonis ingh-121027.)Thegarbage collector is now incremental,which means that the behavior of
gc.collect()
changes slightly:gc.collect(1)
: Performs an increment of garbage collection,rather than collecting generation 1.Other calls to
gc.collect()
are unchanged.
The
locale.nl_langinfo()
function now temporarily sets theLC_CTYPE
locale in some cases.This temporary change affects other threads.(Contributed by Serhiy Storchaka ingh-69998.)types.UnionType
is now an alias fortyping.Union
,causing changes in some behaviors.Seeabove for more details.(Contributed by Jelle Zijlstra ingh-105499.)The runtime behavior of annotations has changed in various ways; seeabove for details. While most code that interactswith annotations should continue to work, some undocumented details may behavedifferently.
As part of making the
mimetypes
CLI public,it now exits with1
on failure instead of0
and2
on incorrect command-line parameters instead of1
.Error messages are now printed to stderr.The
\B
pattern in regular expression now matches the empty stringwhen given as the entire pattern, which may cause behavioural changes.On FreeBSD,
sys.platform
no longer contains the major version number.
Changes in annotations (PEP 649 andPEP 749)¶
This section contains guidance on changes that may be needed to annotationsor Python code that interacts with or introspects annotations,due to the changes related todeferred evaluation of annotations.
In the majority of cases, working code from older versions of Pythonwill not require any changes.
Implications for annotated code¶
If you define annotations in your code (for example, for use with a static typechecker), then this change probably does not affect you: you can keepwriting annotations the same way you did with previous versions of Python.
You will likely be able to remove quoted strings in annotations, which are frequentlyused for forward references. Similarly, if you usefrom__future__importannotations
to avoid having to write strings in annotations, you may well be able toremove that import once you support only Python 3.14 and newer.However, if you rely on third-party libraries that read annotations,those libraries may need changes to support unquoted annotations before theywork as expected.
Implications for readers of__annotations__
¶
If your code reads the__annotations__
attribute on objects,you may want to make changes in order to support code that relies ondeferred evaluation of annotations.For example, you may want to useannotationlib.get_annotations()
withtheFORWARDREF
format,as thedataclasses
module now does.
The externaltyping_extensions package provides partial backportsof some of the functionality of theannotationlib
module,such as theFormat
enum andtheget_annotations()
function.These can be used to write cross-version code that takes advantage ofthe new behavior in Python 3.14.
Related changes¶
The changes in Python 3.14 are designed to rework how__annotations__
works at runtime while minimizing breakage to code that containsannotations in source code and to code that reads__annotations__
.However, if you rely on undocumented details of the annotation behavioror on private functions in the standard library, there are many ways in whichyour code may not work in Python 3.14.To safeguard your code against future changes, only use the documentedfunctionality of theannotationlib
module.
In particular, do not read annotations directly from the namespace dictionaryattribute of type objects.Useannotationlib.get_annotate_from_class_namespace()
during classconstruction andannotationlib.get_annotations()
afterwards.
In previous releases, it was sometimes possible to access class annotationsfrom an instance of an annotated class. This behavior was undocumentedand accidental, and will no longer work in Python 3.14.
from__future__importannotations
¶
In Python 3.7,PEP 563 introduced thefrom__future__importannotations
future statement, which turns all annotations into strings.
However, this statement is now deprecated and it is expected to be removedin a future version of Python.This removal will not happen until after Python 3.13 reaches its end of lifein 2029, being the last version of Python without support for deferredevaluation of annotations.
In Python 3.14, the behavior of code usingfrom__future__importannotations
is unchanged.
Changes in the C API¶
Py_Finalize()
now deletes all interned strings. Thisis backwards incompatible to any C extension that holds onto an internedstring after a call toPy_Finalize()
and is then reused after acall toPy_Initialize()
. Any issues arising from this behavior willnormally result in crashes during the execution of the subsequent call toPy_Initialize()
from accessing uninitialized memory. To fix, usean address sanitizer to identify any use-after-free coming froman interned string and deallocate it during module shutdown.(Contributed by Eddie Elizondo ingh-113601.)TheUnicode Exception Objects C APInow raises a
TypeError
if its exception argument is notaUnicodeError
object.(Contributed by Bénédikt Tran ingh-127691.)
The interpreter internally avoids some reference count modifications whenloading objects onto the operands stack byborrowingreferences when possible. This can lead to smaller reference count valuescompared to previous Python versions. C API extensions that checked
Py_REFCNT()
of1
to determine if an function argument is notreferenced by any other code should instead usePyUnstable_Object_IsUniqueReferencedTemporary()
as a safer replacement.Private functions promoted to public C APIs:
_PyBytes_Join()
:PyBytes_Join()
_PyLong_IsNegative()
:PyLong_IsNegative()
_PyLong_IsPositive()
:PyLong_IsPositive()
_PyLong_IsZero()
:PyLong_IsZero()
_PyLong_Sign()
:PyLong_GetSign()
_PyUnicodeWriter_Dealloc()
:PyUnicodeWriter_Discard()
_PyUnicodeWriter_Finish()
:PyUnicodeWriter_Finish()
_PyUnicodeWriter_Init()
: usePyUnicodeWriter_Create()
_PyUnicodeWriter_Prepare()
: (no replacement)_PyUnicodeWriter_PrepareKind()
: (no replacement)_PyUnicodeWriter_WriteChar()
:PyUnicodeWriter_WriteChar()
_PyUnicodeWriter_WriteStr()
:PyUnicodeWriter_WriteStr()
_PyUnicodeWriter_WriteSubstring()
:PyUnicodeWriter_WriteSubstring()
_PyUnicode_EQ()
:PyUnicode_Equal()
_PyUnicode_Equal()
:PyUnicode_Equal()
_Py_GetConfig()
:PyConfig_Get()
andPyConfig_GetInt()
_Py_HashBytes()
:Py_HashBuffer()
_Py_fopen_obj()
:Py_fopen()
PyMutex_IsLocked()
:PyMutex_IsLocked()
Thepythoncapi-compat project can be used to get most of these newfunctions on Python 3.13 and older.