Python 3.14 有什麼新功能¶
- 編輯者:
Adam Turner 和 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.
也參考
PEP 745 - Python 3.14 發佈時程
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 改進:
平台支援:
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 theVALUEformat (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.
(由 Jelle Zijlstra 於PEP 749 和gh-119180 貢獻;PEP 649 由 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 at隔離擴充模組.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.
(由 Eric Snow 於gh-134939 貢獻。)
也參考
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.)
也參考
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()})')# 在 PID 1234 的行程中執行print('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_DEBUGenvironment variable.A
-Xdisable-remote-debugcommand-line option.A
--without-remote-debugconfigure flag to completely disablethe feature at build time.
(Contributed by Pablo Galindo Salgado, Matt Wozniski, and Ivona Stojanovicingh-131591.)
也參考
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.
備註
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.Threadstart 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 thedecimalcontext 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.)
改善錯誤訊息¶
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.)
elifstatements that follow anelseblock 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, orcontinueis passed beforeif, then theerror message highlights where theexpressionisrequired. (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
aswith 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
dictorset.(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
asyncwithinstead ofwith,and vice versa for the asynchronous context manager protocol.(Contributed by Bénédikt Tran ingh-128398.)
PEP 784:標準函式庫中的 Zstandard 支援¶
The newcompression package contains modulescompression.lzma,compression.bz2,compression.gzip andcompression.zlibwhich re-export thelzma,bz2,gzip andzlibmodules 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.)
也參考
Asyncio introspection capabilities¶
Added a new command-line interface to inspect running Python processesusing asynchronous tasks, available viapython-masynciopsPIDorpython-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-Xcommand-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.
(由 Neil Schemenauer 和 Kumar Aditya 於gh-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
-Ocommand-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 produceSyntaxErrors.(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 acceptASCIIbytesandbytes-like objects.(Contributed by Daniel Pope ingh-129349.)Add class methods
float.from_number()andcomplex.from_number()to convert a number tofloatorcomplextype correspondingly.They raise aTypeErrorif 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-string(f 字串)).(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
memoryviewtype now supports subscription,making it ageneric type.(Contributed by Brian Schubert ingh-126012.)Using
NotImplementedin a boolean contextwill now raise aTypeError.This has raised aDeprecationWarningsince 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.)superobjects are nowcopyableandpickleable.(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, theselfandcumulativetimesare replaced by the stringcached.Values above
2for-Ximporttimeare now reserved for future use.(由 Noah Kim 和 Adam Turner 於gh-118655 貢獻。)
The command-line option
-cnow automatically dedents its codeargument before execution. The auto-dedentation behavior mirrorstextwrap.dedent().(Contributed by Jon Crall and Steven Sun ingh-103998.)-Jis 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!')
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.
(由 Irit Katriel 於gh-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.
(由 Mark Shannon 於gh-108362 貢獻。)
Default interactive shell¶
The defaultinteractive shell now highlights Python syntax.The feature is enabled by default, save if
PYTHON_BASIC_REPLor 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 thePYTHONSTARTUPscript.Note that this function has no stability guarantees,and may change or be removed.(由 Łukasz Langa 於gh-131507 貢獻。)
The defaultinteractive shell now supports import auto-completion.This means that typing
importcoand pressing<Tab> will suggestmodules starting withco. Similarly, typingfromconcurrentimportiwill suggest submodules ofconcurrentstarting 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.ArgumentParsernow 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 theTaskconstructor or the custom task factory.(Seeset_task_factory()for details.)Thenameandcontextkeyword arguments are no longer special;the name should now be set using thenamekeyword argument of the factory,andcontextmay beNone.This affects the following function and methods:
asyncio.create_task(),asyncio.loop.create_task(),asyncio.TaskGroup.create_task().(由 Thomas Grainger 於gh-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
interpretersmoduleintroduced byPEP 734.(Contributed by Eric Snow ingh-124548.)
On Unix platforms other than macOS,'forkserver' is now 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.(由 Gregory P. Smith 於gh-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.mapto 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¶
configparserwill 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
Tokenobjects.(Contributed by Andrew Svetlov ingh-129889.)
ctypes¶
The layout ofbit fieldsin
StructureandUnionobjectsis 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/Unionfield descriptors is now available asCField,and has new attributes to aid debugging and introspection.(Contributed by Petr Viktorin ingh-128715.)On Windows, the
COMErrorexception 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 amemoryviewobject 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 thelibffilibrary 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 correspondingctypestypes.This will stop the cache from growing without limits in some situations.(Contributed by Sergey Miryanov ingh-100926.)The
py_objecttype now supports subscription,making it ageneric type.(Contributed by Brian Schubert ingh-132168.)ctypesnow 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.dateanddatetime.timeclasses.(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--specializedcommand-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
Fractionobject 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
Placeholdersentinel.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
heapqmodule has improved support for working with max-heaps,via the following new functions:
hmac¶
http¶
Directory lists and error pages generated by the
http.servermodule allow the browser to apply its default dark mode.(Contributed by Yorik Hansen ingh-123430.)The
http.servermodule now supports serving over HTTPS using thehttp.server.HTTPSServerclass. 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.
(由 Semyon Moroz 於gh-85162 貢獻。)
imaplib¶
Add
IMAP4.idle(), implementing the IMAP4IDLEcommand as defined inRFC 2177.(Contributed by Forest ingh-55454.)
inspect¶
signature()takes a new argumentannotation_format to controltheannotationlib.Formatused 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
readmay now raise aBlockingIOErrorif the operation cannot immediately return bytes.(Contributed by Giovanni Siragusa ingh-109523.)Add the
ReaderandWriterprotocols 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
jsonmodule as a script using the-mswitch: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¶
QueueListenerobjects now support thecontext manager protocol.(Contributed by Charles Machalow ingh-132106.)QueueListener.startnowraises aRuntimeErrorif 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-fontobjectOpenType Layout (OTF)
font/otfTrueType:
font/ttfWOFF 1.0
font/woffWOFF 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
.avitovideo/vnd.aviand for.wavtoaudio/vnd.waveRFC 4337: Add MPEG-4
audio/mp4(.m4a)RFC 5334: Add Ogg media (
.oga,.oggand.ogx)RFC 6713: Add gzip
application/gzip(.gz)RFC 9639: Add FLAC
audio/flac(.flac)RFC 9512
application/yamlMIME type for YAML files (.yamland.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,.pptxand.xlsxtypesOASIS:Add OpenDocument
.odg,.odp,.odsand.odttypesW3C: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 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.(由 Gregory P. Smith 於gh-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 oflistfromkeys(),reversed(d),d|{},{}|d,d|={'b':2}for proxies ofdict
(由 Roy Hyunjin Han 於gh-103134 貢獻。)
Add support for shared
setobjects viaSyncManager.set().Theset()inManager()method is now available.(Contributed by Mingyu Park ingh-129949.)Add the
interrupt()tomultiprocessing.Processobjects, which terminates the childprocess by sendingSIGINT. This enablesfinallyclauses 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 equivalenttoobjisNoneandoperator.is_not_none(obj)is equivalenttoobjisnotNone.(Contributed by Raymond Hettinger and Nico Mexis ingh-115808.)
os¶
Add the
reload_environ()function to updateos.environandos.environbwith 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_DEADLINEandSCHED_NORMALconstantsto theosmodule.(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 thanFileNotFoundErrorwill 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.Pathto 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.
(由 Barney Gale 於gh-73991 貢獻。)
Add the
infoattribute, which stores an objectimplementing the newpathlib.types.PathInfoprotocol. 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
pdbmodule now supports remote attaching to a running Python processusing a new-pPIDcommand-line option:python-mpdb-p1234This 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.(由 Matt Wozniski and Pablo Galindo 於gh-131591 貢獻。)
Hardcoded breakpoints (
breakpoint()andset_trace()) nowreuse the most recentPdbinstance that callsset_trace(), instead of creating a new one each time.As a result, all the instance specific data likedisplayandcommandsare preserved across hardcoded breakpoints.(Contributed by Tian Gao ingh-121450.)Add a new argumentmode to
pdb.Pdb. Disable therestartcommand whenpdbis ininlinemode.(Contributed by Tian Gao ingh-123757.)A confirmation prompt will be shown when the user tries to quit
pdbininlinemode.y,Y,<Enter>orEOFwill 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 theskippattern(if any).(Contributed by Tian Gao ingh-130493.)<tab>at the beginning of the line inpdbmulti-line input willfill in a 4-space indentation now, instead of inserting a\tcharacter.(Contributed by Tian Gao ingh-130471.)Auto-indent is introduced in
pdbmulti-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.)$_asynctaskis 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.awaitstatements are supported with thisfunction.(Contributed by Tian Gao ingh-132576.)Source code displayed in
pdbwill be syntax-highlighted. This featurecan be controlled using the same methods as the defaultinteractiveshell, in addition to the newly addedcolorizeargument ofpdb.Pdb.(Contributed by Tian Gao and Łukasz Langa ingh-133355.)
pickle¶
Set the default protocol version on the
picklemodule 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 theplatformmodule.(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
\zas a synonym for\Zinregularexpressions.It is interpreted unambiguously in many other regular expression engines,unlike\Z, which has subtly different behavior.(Contributed by Serhiy Storchaka ingh-133306.)\Binregularexpressionnow 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_HCIon FreeBSD.(Contributed by Victor Stinner ingh-111178.)Add support for
BTPROTO_SCOon FreeBSD.(Contributed by Serhiy Storchaka ingh-85302.)Add support forcid andbdaddr_type in the address for
BTPROTO_L2CAPon FreeBSD.(Contributed by Serhiy Storchaka ingh-132429.)Add support forchannel in the address for
BTPROTO_HCIon Linux.(Contributed by Serhiy Storchaka ingh-70145.)Accept an integer as the address for
BTPROTO_HCIon 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.platformno longer contains the major version number.It is always'freebsd', instead of'freebsd13'or'freebsd14'.(Contributed by Michael Osipov ingh-129393.)Raise
DeprecationWarningforsys._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._jitnamespace, containing utilities for introspectingjust-in-time compilation.(Contributed by Brandt Bucher ingh-133231.)
sys.monitoring¶
Add two new monitoring events,
BRANCH_LEFTandBRANCH_RIGHT.These replace and deprecate theBRANCHevent.(Contributed by Mark Shannon ingh-122548.)
sysconfig¶
Add
ABIFLAGSkey 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.UnionTypeis now an alias fortyping.Union.Seebelow for more details.(Contributed by Jelle Zijlstra ingh-105499.)
typing¶
The
types.UnionTypeandtyping.Uniontypes 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.UnionTypeisitself 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.在過去,舊式聯集是使用私有類別
typing._UnionGenericAlias實作的。這個類別不再被需要,但為了向後相容性而保留,並計劃將在 Python 3.17 中移除。使用者應該改用文件中記錄的自我檢查輔助函式,例如get_origin()和typing.get_args(),或者依賴私有實作細節。It is now possible to use
typing.Unionitself inisinstance()checks.For example,isinstance(int|str,typing.Union)will returnTrue;previously this raisedTypeError.The
__args__attribute oftyping.Unionobjects isno longer writable.It is no longer possible to set any attributes on
Unionobjects.This only ever worked for dunder attributes on previous versions, was neverdocumented to work, and was subtly broken in many cases.
(由 Jelle Zijlstra 於gh-105499 貢獻。)
TypeAliasTypenow supports star unpacking.
unicodedata¶
The Unicode database has been updated to Unicode 16.0.0.
unittest¶
unittestoutput 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
TestCaseclassthat 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.
(由 Serhiy Storchaka 於gh-71339 貢獻。)
urllib¶
Upgrade HTTP digest authentication algorithm for
urllib.requestbysupporting 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
URLErrorif 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/hostsis 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 anOSErrorexception to be raised.(由 Barney Gale 於gh-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.)NILandMAXare 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
BROWSERenvironment variable can now refer to alreadyregistered browsers for thewebbrowsermodule, instead of alwaysgenerating a new browser command.This makes it possible to set
BROWSERto the value of one of thesupported browsers on macOS.
zipfile¶
Added
ZipInfo._for_archive, a methodto resolve suitable defaults for aZipInfoobjectas used byZipFile.writestr.(Contributed by Bénédikt Tran ingh-123424.)ZipFile.writestr()now respects theSOURCE_DATE_EPOCHenvironment variable in order to better support reproducible builds.(Contributed by Jiahao Li ingh-91279.)
最佳化¶
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 theBdbclass'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.
(由 Mark Shannon 於gh-108362 貢獻。)
io¶
pathlib¶
Path.read_bytesnow uses unbuffered modeto open files, which is between 9% and 17% faster to read in full.(Contributed by Cody Maloney ingh-120754.)
pdb¶
pdbnow supports two backends, based on eithersys.settrace()orsys.monitoring.Using thepdb CLI orbreakpoint()will always use thesys.monitoringbackend.Explicitly instantiatingpdb.Pdband 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
zlibmodulein the default binaries.There are no known incompatibilities betweenzlib-ngand the previously-usedzlibimplementation.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.(由 Steve Dower 於gh-91349 貢獻。)
已移除¶
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 raiseValueErrors.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
Constantsince Python 3.8 and have emitteddeprecation warnings since Python 3.12:BytesEllipsisNameConstantNumStr
As a consequence of these removals, user-defined
visit_Num,visit_Str,visit_Bytes,visit_NameConstantandvisit_Ellipsismethodson customNodeVisitorsubclasses will no longer be calledwhen theNodeVisitorsubclass is visiting an AST.Define avisit_Constantmethod instead.(由 Alex Waygood 於gh-119562 貢獻。)
Remove the following deprecated properties on
ast.Constant,which were present for compatibility with the now-removed AST classes:Constant.nConstant.s
Use
Constant.valueinstead.(Contributed by Alex Waygood ingh-119562.)
asyncio¶
Remove the following classes, methods, and functions,which have been deprecated since Python 3.12:
AbstractChildWatcherFastChildWatcherMultiLoopChildWatcherPidfdChildWatcherSafeChildWatcherThreadedChildWatcherAbstractEventLoopPolicy.get_child_watcher()AbstractEventLoopPolicy.set_child_watcher()get_child_watcher()set_child_watcher()
(由 Kumar Aditya 於gh-120804 貢獻。)
asyncio.get_event_loop()now raises aRuntimeErrorif there is no current event loop,and no longer implicitly creates an event loop.(由 Kumar Aditya 於gh-126353 貢獻。)
有一些使用
asyncio.get_event_loop()的模式,其中大多數可以用asyncio.run()取代。如果你正在運行非同步函式,只需使用
asyncio.run()。之前是:
asyncdefmain():...loop=asyncio.get_event_loop()try:loop.run_until_complete(main())finally:loop.close()
之後是:
asyncdefmain():...asyncio.run(main())
如果你需要啟動某些東西然後永遠運行,像是監聽 socket 的伺服器,請使用
asyncio.run()和asyncio.Event。之前是:
defstart_server(loop):...loop=asyncio.get_event_loop()try:start_server(loop)loop.run_forever()finally:loop.close()
之後是:
defstart_server(loop):...asyncdefmain():start_server(asyncio.get_running_loop())awaitasyncio.Event().wait()asyncio.run(main())
如果你需要在事件迴圈中運行某些東西,然後在其周圍運行一些阻塞程式碼,請使用
asyncio.Runner。之前是:
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()
之後是:
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¶
移除已棄用的
importlib.abc類別:ResourceReader(useTraversableResources)Traversable(useTraversable)TraversableResources(useTraversableResources)
(由 Jason R. Coombs 和 Hugo van Kemenade 貢獻於gh-93963。)
itertools¶
Remove support for copy, deepcopy, and pickle operationsfrom
itertoolsiterators.These have emitted aDeprecationWarningsince 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
versionandversion_infofromthesqlite3module;usesqlite_versionandsqlite_version_infofor 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
Quoterclass fromurllib.parse,which has been deprecated since Python 3.11.(Contributed by Nikita Sobolev ingh-118827.)Remove the
URLopenerandFancyURLopenerclassesfromurllib.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.)
已棄用¶
New deprecations¶
在
complex()建構函式中將複數作為real 或imag 引數傳遞現在已被棄用;複數應該只作為單個位置引數傳遞。 (由 Serhiy Storchaka 於gh-109218 貢獻。)將未以文件記錄的關鍵字引數prefix_chars 傳遞給
add_argument_group()的做法現在已被棄用。(由 Savannah Ostrowski 於gh-125563 貢獻。)Deprecated the
argparse.FileTypetype converter.Anything relating to resource management should be handleddownstream, after the arguments have been parsed.(Contributed by Serhiy Storchaka ingh-58032.)
asyncio.iscoroutinefunction()已被棄用並將在 Python 3.16 中移除;請改用inspect.iscoroutinefunction()。(由 Jiahao Li 和 Kumar Aditya 於gh-122875 貢獻。)asyncio策略系統已被棄用並將在 Python 3.16 中移除。特別是以下類別和函式已被棄用:使用者應該使用
asyncio.run()或asyncio.Runner搭配loop_factory 引數來使用所需的事件迴圈實作。例如在 Windows 上使用
asyncio.SelectorEventLoop:importasyncioasyncdefmain():...asyncio.run(main(),loop_factory=asyncio.SelectorEventLoop)
(由 Kumar Aditya 於gh-127949 貢獻。)
codecs:codecs.open()函式已被棄用,並將在未來的 Python 版本中移除。請改用open()。(由 Inada Naoki 於gh-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_cacheis deprecated.Seectypes.POINTER()for updated implementation details.(Contributed by Sergey Myrianov ingh-100926.)
functools: 使用function 或sequence 關鍵字引數呼叫functools.reduce()的 Python 實作已被棄用;這些參數將在 Python 3.16 中變為僅限位置引數。(由 Kirill Podoprigora 於gh-121676 貢獻。)logging: 對具有strm 引數的自訂日誌記錄處理函式的支援已被棄用,並計劃在 Python 3.16 中移除。請改為使用stream 引數來定義處理函式。(由 Mariusz Felisiak 於gh-115032 貢獻。)mimetypes: 有效的副檔名為空字串或對mimetypes.MimeTypes.add_type()以 '.' 開頭。未加點的副檔名已被棄用,並將在 Python 3.16 中引發ValueError。(由 Hugo van Kemenade 於gh-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.Thesubprocessmodule 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_localsattribute 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_localsdirectly 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.Variablemethodstrace_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 (like0and[]) except emptystrings, bytes-like objects andNoneinparse_qsl()andparse_qs()is now deprecated.(Contributed by Serhiy Storchaka ingh-116897.)
Python 3.15 中待移除的項目¶
引入系統 (import system):
在模組上設定
__cached__而沒有設定__spec__.cached的做法已被棄用。在 Python 3.15 中,引入系統或標準函式庫將不再設定或考慮__cached__。(gh-97879)在模組上設定
__package__而沒有設定__spec__.parent的做法已被棄用。在 Python 3.15 中,引入系統或標準函式庫將不再設定或考慮__package__。(gh-97879)
自 Python 3.13 起,未記錄的
ctypes.SetPointerType()函式已被棄用。
過時且很少使用的
CGIHTTPRequestHandler自 Python 3.13 起已被棄用。不存在直接的替代。任何東西都比 CGI 更好地將 Web 伺服器與請求處理程序介接起來。自 Python 3.13 起,python -m http.server 命令列介面的
--cgi旗標已被棄用。
load_module()method:請改用exec_module()。
getdefaultlocale()已在 Python 3.11 中被棄用,原本計劃在 Python 3.13 中移除 (gh-90817),但被延後至 Python 3.15。請改用getlocale()、setlocale()和getencoding()。 (由 Hugo van Kemenade 於gh-111187 貢獻。)
PurePath.is_reserved()已自 Python 3.13 被棄用。請用os.path.isreserved()來偵測 Windows 上的保留路徑。
自 Python 3.13 起,
java_ver()已被棄用。此函式僅對 Jython 支援有用,具有令人困惑的 API,基本上未經測試。
sysconfig.is_python_build()的check_home 引數自 Python 3.12 起已被棄用。
RLock()在 Python 3.15 中將不接受任何引數。自 Python 3.14 起,傳遞任何引數的用法已被棄用,因為 Python 版本不允許任何引數,但 C 版本允許任意數量的位置或關鍵字引數,並忽略每個引數。
types.CodeType:自 3.10 起,存取co_lnotab已在PEP 626 中被棄用,並計劃在 3.12 中移除,但只在 3.12 中於適當時發出DeprecationWarning。可能在 3.15 中移除。(由 Nikita Sobolev 於gh-101866 貢獻。)
用於建立
NamedTuple類別的未以文件記錄之關鍵字引數語法 (Point=NamedTuple("Point",x=int,y=int)) 已自 Python 3.13 棄用。請改用基於類別的語法或函式語法 (functional syntax)。當使用
TypedDict的函式語法時,未傳遞值給fields 參數 (TD=TypedDict("TD")) 或傳遞None(TD=TypedDict("TD",None)) 的做法自 Python 3.13 起已被棄用。請使用classTD(TypedDict):pass或TD=TypedDict("TD",{})來建立具有零個欄位的 TypedDict。自 Python 3.13 起,
typing.no_type_check_decorator()裝飾器函式已被棄用。在typing模組中使用了八年之後,它尚未得到任何主要型別檢查器的支援。
wave:已棄用
Wave_read和Wave_write類別的getmark()、setmark()和getmarkers()方法自 Python 3.13 被棄用。
load_module()自 Python 3.10 被棄用。請改用exec_module()。(由 Jiahao Li 於gh-125746 貢獻。)
Python 3.16 中待移除的項目¶
引入系統 (import system):
在模組上設定
__loader__而沒有設定__spec__.loader的做法將於 Python 3.16 被棄用。在 Python 3.16 中,引入系統或標準函式庫將不再設定或考慮__loader__。
自 Python 3.3 起,
'u'格式碼 (wchar_t) 在文件中已被棄用,自 Python 3.13 起在 runtime 已被棄用。請使用'w'格式碼 (Py_UCS4) 來取代 Unicode 字元。
asyncio.iscoroutinefunction()已被棄用並將在 Python 3.16 中移除;請改用inspect.iscoroutinefunction()。(由 Jiahao Li 和 Kumar Aditya 於gh-122875 貢獻。)asyncio策略系統已被棄用並將在 Python 3.16 中移除。特別是以下類別和函式已被棄用:使用者應該使用
asyncio.run()或asyncio.Runner搭配loop_factory 來使用所需的事件迴圈實作。例如在 Windows 上使用
asyncio.SelectorEventLoop:importasyncioasyncdefmain():...asyncio.run(main(),loop_factory=asyncio.SelectorEventLoop)
(由 Kumar Aditya 於gh-127949 貢獻。)
自 Python 3.12 起,布林型別的位元反轉
~True或~False已被棄用,因為它會產生不預期且不直觀的結果(-2和-1)。使用notx代替布林值的邏輯否定。在極少數情況下,你需要對底層的整數進行位元反轉,請明確轉換為~int(x)(~int(x))。
自 Python 3.14 起,使用function 或sequence 關鍵字引數呼叫
functools.reduce()的 Python 實作已被棄用。
對具有strm 引數的自訂日誌記錄處理函式的支援已被棄用,並計劃在 Python 3.16 中移除。請改用stream 引數。(由 Mariusz Felisiak 於gh-115032 貢獻。)
有效的副檔名以 '.' 開頭或對
mimetypes.MimeTypes.add_type()為空字串。未加點的副檔名已被棄用,並將在 Python 3.16 中引發ValueError。(由 Hugo van Kemenade 於gh-75223 貢獻。)
自 Python 3.14 起,
ExecError例外已被棄用。自 Python 3.4 以來,它尚未被shutil中的任何函式使用,現在是RuntimeError的別名。
自 Python 3.14 起,
Class.get_methods方法已被棄用。
sys:自 Python 3.13 起,
_enablelegacywindowsfsencoding()函式已被棄用。請改用PYTHONLEGACYWINDOWSFSENCODING環境變數。
自 Python 3.14 起,
sysconfig.expand_makefile_vars()函式已被棄用。請改用sysconfig.get_paths()的vars引數。
自 Python 3.13 起,未以文件記錄和未被使用的
TarFile.tarfile屬性已被棄用。
Python 3.17 中待移除的項目¶
collections.abc.ByteString預計在 Python 3.17 中移除。使用
isinstance(obj,collections.abc.Buffer)來測試obj是否在 runtime 實作了緩衝區協定。在型別註解的使用中,請用Buffer或明確指定你的程式碼所支援型別的聯集(例如bytes|bytearray|memoryview)。ByteString最初被設計為一個抽象類別,以作為bytes和bytearray的超型別 (supertype)。然而由於 ABC 從未擁有任何方法,知道一個物件是ByteString的實例從未真正告訴你任何關於該物件的有用資訊。其他常見的緩衝區型別如memoryview也從未被理解為ByteString的子型別(無論是在 runtime 還是由靜態型別檢查器)。
在 Python 3.14 之前,舊式聯集是使用私有類別
typing._UnionGenericAlias實作的。這個類別不再被需要,但為了向後相容性而保留,並計劃將在 Python 3.17 中移除。使用者應該改用文件中記錄的內省輔助函式,例如typing.get_origin()和typing.get_args(),或者依賴私有實作細節。typing.ByteString自 Python 3.9 起已被棄用,預計在 Python 3.17 中移除。使用
isinstance(obj,collections.abc.Buffer)來測試obj是否在 runtime 實作了緩衝區協定。在型別註解的使用中,請用Buffer或明確指定你的程式碼所支援型別的聯集(例如bytes|bytearray|memoryview)。ByteString最初被設計為一個抽象類別,以作為bytes和bytearray的超型別 (supertype)。然而由於 ABC 從未擁有任何方法,知道一個物件是ByteString的實例從未真正告訴你任何關於該物件的有用資訊。其他常見的緩衝區型別如memoryview也從未被理解為ByteString的子型別(無論是在 runtime 還是由靜態型別檢查器)。
Python 3.19 中待移除的項目¶
未來版本中的待移除項目¶
以下 API 將在未來被移除,雖然目前尚未安排移除日期。
巢狀引數群組和巢狀互斥群組已被棄用。
將未以文件記錄的關鍵字引數prefix_chars 傳遞給
add_argument_group()的做法現在已被棄用。argparse.FileType型別轉換器已被棄用。
產生器:
throw(type,exc,tb)和athrow(type,exc,tb)簽名已被棄用:請改用throw(exc)和athrow(exc),為單引數簽名。目前 Python 接受數值字面值後面立即接關鍵字,例如
0inx、1orx、0if1else2。它讓運算式模糊且容易混淆,如[0x1forxiny](可以解釋為[0x1forxiny]或[0x1forxiny])。如果數值字面值後立即接and、else、for、if、in、is和or之一的關鍵字,則會引發語法警告。在未來版本中,它將被更改為語法錯誤。(gh-87999)__index__()和__int__()方法回傳非 int 型別的支援:這些方法將需要回傳int的嚴格子類別實例。將
int()委派給__trunc__()方法。在
complex()建構子中將複數作為real 或imag 引數傳遞現在已被棄用;它應該只作為單個位置引數傳遞。 (由 Serhiy Storchaka 於gh-109218 貢獻。)
calendar:calendar.January和calendar.February常數已被棄用並被calendar.JANUARY和calendar.FEBRUARY取代。 (由 Prince Roshan 於gh-103636 貢獻。)codecs:請改用open()而非codecs.open()。(gh-133038)utcnow():請改用datetime.datetime.now(tz=datetime.UTC)。utcfromtimestamp():請改用datetime.datetime.fromtimestamp(timestamp,tz=datetime.UTC)。
gettext:複數值必須是整數。cache_from_source()debug_override 參數已被棄用:請改用optimization 參數。
EntryPoints元組介面。回傳值上的隱式
None。
mailbox:已棄用 StringIO 輸入和文本模式,請改用 BytesIO 和二進位模式。os:在多執行緒行程中呼叫os.register_at_fork()。pydoc.ErrorDuringImport:exc_info 參數的元組值已被棄用,請用例外實例。re:現在對正規表示式中的數值群組參照和群組名稱用了更嚴格的規則。現在只有 ASCII 數碼序列被接受作為數值參照。位元組模式和替換字串中的群組名稱現在只能包含 ASCII 字母、數碼和底線。(由 Serhiy Storchaka 於gh-91760 貢獻。)sre_compile、sre_constants和sre_parse模組。ssl選項和協定:不帶協定引數的
ssl.SSLContext已被棄用。ssl.SSLContext:set_npn_protocols()和selected_npn_protocol()已被棄用:請改用 ALPN。ssl.OP_NO_SSL*選項ssl.OP_NO_TLS*選項ssl.PROTOCOL_SSLv3ssl.PROTOCOL_TLSssl.PROTOCOL_TLSv1ssl.PROTOCOL_TLSv1_1ssl.PROTOCOL_TLSv1_2ssl.TLSVersion.SSLv3ssl.TLSVersion.TLSv1ssl.TLSVersion.TLSv1_1
threading方法:threading.Condition.notifyAll():請用notify_all()。threading.Event.isSet():請用is_set()。threading.Thread.isDaemon()、threading.Thread.setDaemon():請用threading.Thread.daemon屬性。threading.Thread.getName()、threading.Thread.setName():請用threading.Thread.name屬性。threading.currentThread():請用threading.current_thread()。threading.activeCount():請用threading.active_count()。
內部類別
typing._UnionGenericAlias不再用於實作typing.Union。為了保持與此私有類別使用者的相容性,直到至少 Python 3.17 都將提供一個相容性 shim。(由 Jelle Zijlstra 於gh-105499 貢獻。)unittest.IsolatedAsyncioTestCase:從測試案例中回傳非None的值已被棄用。urllib.parse已棄用函式:請改用urlparse()。splitattr()splithost()splitnport()splitpasswd()splitport()splitquery()splittag()splittype()splituser()splitvalue()to_bytes()
wsgiref:SimpleHandler.stdout.write()不應該進行部分寫入。xml.etree.ElementTree:已棄用對Element的真值測試。在未來版本中,它將始終回傳True。請改用明確的len(elem)或elemisnotNone測試。sys._clear_type_cache()已被棄用:請改用sys._clear_internal_caches()。
CPython 位元組碼變更¶
Replaced the opcode
BINARY_SUBSCRby theBINARY_OPopcode with theNB_SUBSCRoparg.(Contributed by Irit Katriel ingh-100239.)Add the
BUILD_INTERPOLATIONandBUILD_TEMPLATEopcodes to construct newInterpolationandTemplateinstances, respectively.(Contributed by Lysandros Nikolaou and others ingh-132661;see alsoPEP 750: Template strings).Remove the
BUILD_CONST_KEY_MAPopcode.UseBUILD_MAPinstead.(Contributed by Mark Shannon ingh-122160.)Replace the
LOAD_ASSERTION_ERRORopcode withLOAD_COMMON_CONSTANTand add support for loadingNotImplementedError.Add the
LOAD_FAST_BORROWandLOAD_FAST_BORROW_LOAD_FAST_BORROWopcodes 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_INTopcode, which pushes a small integerequal to theopargto the stack.TheRETURN_CONSTopcode is removed as it is no longer used.(Contributed by Mark Shannon ingh-125837.)Add the new
LOAD_SPECIALinstruction.Generate code forwithandasyncwithstatementsusing the new instruction.Removed theBEFORE_WITHandBEFORE_ASYNC_WITHinstructions.(Contributed by Mark Shannon ingh-120507.)Add the
POP_ITERopcode to support 'virtual' iterators.(Contributed by Mark Shannon ingh-132554.)
Pseudo-instructions¶
Add the
ANNOTATIONS_PLACEHOLDERpseudo instructionto support partially executed module-level annotations withdeferred evaluation of annotations.(Contributed by Jelle Zijlstra ingh-130907.)Add the
BINARY_OP_EXTENDpseudo 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_PYfor calls to Python functions,CALL_KW_BOUND_METHODfor calls to bound methods, andCALL_KW_NON_PYfor all other calls.(Contributed by Mark Shannon ingh-118093.)Add the
JUMP_IF_TRUEandJUMP_IF_FALSEpseudo 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_MORTALpseudo instruction.(Contributed by Mark Shannon ingh-128685.)Add the
LOAD_CONST_IMMORTALpseudo instruction,which does the same asLOAD_CONST, but is more efficientfor immortal objects.(Contributed by Mark Shannon ingh-125837.)Add the
NOT_TAKENpseudo instruction, used bysys.monitoringto record branch events (such asBRANCH_LEFT).(Contributed by Mark Shannon ingh-122548.)
C API 變更¶
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).
(由 Victor Stinner 於gh-107954 貢獻。)
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_VersionorPY_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.)新增用於操作目前 runtime Python 直譯器配置的函式(PEP 741:Python 配置 C API):
(由 Victor Stinner 於gh-107954 貢獻。)
新增用於配置 Python 初始化的函式(PEP 741:Python 配置 C API):
(由 Victor Stinner 於gh-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 ofintobjects.(Contributed by Sergey B Kirpichev ingh-116560.)Add
PyLong_IsPositive(),PyLong_IsNegative()andPyLong_IsZero()for checking ifPyLongObjectis 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/fromPythonintobjects:(由 Victor Stinner 於gh-120389 貢獻。)
Add a new import and export API for Python
intobjects(PEP 757):(由 Sergey B Kirpichev 和 Victor Stinner 於gh-102471 貢獻。)
Add
PyMonitoring_FireBranchLeftEvent()andPyMonitoring_FireBranchRightEvent()for generatingBRANCH_LEFTandBRANCH_RIGHTevents, 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_tokenslotfor 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
PyUnicodeWriterAPI to create a Pythonstrobject, with the following functions:(由 Victor Stinner 於gh-119182 貢獻。)
The
kandKformats 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
pformat unit inPy_BuildValue()that produces a Pythonboolobject 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)==1onfree 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()is1for 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_ITEMSmacros from the limited C API, since they have always been brokenin the limited C API.(Contributed by Victor Stinner ingh-91417.)
被移除的 C API¶
Creating
immutabletypeswithmutable bases was deprecated in Python 3.12,and now raises aTypeError.(Contributed by Nikita Sobolev ingh-119775.)Remove
PyDictObject.ma_version_tagmember, 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_LIMITandPyThreadState.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.)
已棄用的 C API¶
The
Py_HUGE_VALmacro is nowsoft deprecated.UsePy_INFINITYinstead.(Contributed by Sergey B Kirpichev ingh-120026.)The
Py_IS_NAN,Py_IS_INFINITY,andPy_IS_FINITEmacros are nowsoft deprecated.Useisnan,isinfandisfiniteinstead, available frommath.hsince 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_FireBranchEventfunction 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.)
Python 3.15 中待移除的項目¶
PyWeakref_GetObject()和PyWeakref_GET_OBJECT():請改用PyWeakref_GetRef()。可以使用pythoncapi-compat 專案來為 Python 3.12 和更早版本取得PyWeakref_GetRef()。Py_UNICODE型別與Py_UNICODE_WIDE巨集:請改用wchar_t。PyUnicode_AsDecodedObject():請改用PyCodec_Decode()。PyUnicode_AsDecodedUnicode():請改用PyCodec_Decode();請注意某些編解碼器(例如 "base64")可能會回傳非str的型別,例如bytes。PyUnicode_AsEncodedObject():請改用PyCodec_Encode()。PyUnicode_AsEncodedUnicode():請改用PyCodec_Encode();請注意某些編解碼器(例如 "base64")可能會回傳非bytes的型別,例如str。Python 初始化函式,自 Python 3.13 起已被棄用:
Py_GetPath():請改用PyConfig_Get("module_search_paths")(sys.path)。Py_GetPrefix():請改用PyConfig_Get("base_prefix")(sys.base_prefix)。如果需要處理虛擬環境,請改用PyConfig_Get("prefix")(sys.prefix)。Py_GetExecPrefix():請改用PyConfig_Get("base_exec_prefix")(sys.base_exec_prefix)。如果需要處理虛擬環境,請改用PyConfig_Get("exec_prefix")(sys.exec_prefix)。Py_GetProgramFullPath():請改用PyConfig_Get("executable")(sys.executable)。Py_GetProgramName():請改用PyConfig_Get("executable")(sys.executable)。Py_GetPythonHome():請改用PyConfig_Get("home")或PYTHONHOME環境變數。
pythoncapi-compat 專案 可以用來為 Python 3.13 和更早版本取得
PyConfig_Get()。用於配置 Python 初始化的函式,自 Python 3.11 起已被棄用:
PySys_SetArgvEx():請改用PyConfig.argv。PySys_SetArgv():請改用PyConfig.argv。Py_SetProgramName():請改用PyConfig.program_name。Py_SetPythonHome():請改用PyConfig.home。PySys_ResetWarnOptions():請改為清除sys.warnoptions和warnings.filters。
應改用帶有
PyConfig的Py_InitializeFromConfig()API。全域配置變數:
Py_DebugFlag:請改用PyConfig.parser_debug或PyConfig_Get("parser_debug")。Py_VerboseFlag:請改用PyConfig.verbose或PyConfig_Get("verbose")。Py_InteractiveFlag:請改用PyConfig.interactive或PyConfig_Get("interactive")。Py_InspectFlag:請改用PyConfig.inspect或PyConfig_Get("inspect")。Py_OptimizeFlag:請改用PyConfig.optimization_level或PyConfig_Get("optimization_level")。Py_NoSiteFlag:請改用PyConfig.site_import或PyConfig_Get("site_import")。Py_BytesWarningFlag:請改用PyConfig.bytes_warning或PyConfig_Get("bytes_warning")。Py_FrozenFlag:請改用PyConfig.pathconfig_warnings或PyConfig_Get("pathconfig_warnings")。Py_IgnoreEnvironmentFlag:請改用PyConfig.use_environment或PyConfig_Get("use_environment")。Py_DontWriteBytecodeFlag:請改用PyConfig.write_bytecode或PyConfig_Get("write_bytecode")。Py_NoUserSiteDirectory:請改用PyConfig.user_site_directory或PyConfig_Get("user_site_directory")。Py_UnbufferedStdioFlag:請改用PyConfig.buffered_stdio或PyConfig_Get("buffered_stdio")。Py_HashRandomizationFlag:請改用PyConfig.use_hash_seed和PyConfig.hash_seed或PyConfig_Get("hash_seed")。Py_IsolatedFlag:請改用PyConfig.isolated或PyConfig_Get("isolated")。Py_LegacyWindowsFSEncodingFlag:請改用PyPreConfig.legacy_windows_fs_encoding或PyConfig_Get("legacy_windows_fs_encoding")。Py_LegacyWindowsStdioFlag:請改用PyConfig.legacy_windows_stdio或PyConfig_Get("legacy_windows_stdio")。Py_FileSystemDefaultEncoding、Py_HasFileSystemDefaultEncoding:請改用PyConfig.filesystem_encoding或PyConfig_Get("filesystem_encoding")。Py_FileSystemDefaultEncodeErrors:請改用PyConfig.filesystem_errors或PyConfig_Get("filesystem_errors")。Py_UTF8Mode:請改用PyPreConfig.utf8_mode或PyConfig_Get("utf8_mode")。(請參閱Py_PreInitialize())
應改用帶有
PyConfig的Py_InitializeFromConfig()API 來設定這些選項。或者也可以使用PyConfig_Get()在執行時取得這些選項。
Python 3.16 中待移除的項目¶
libmpdecimal的打包副本 (bundled copy)。
Python 3.18 中待移除的項目¶
以下私有函式已被棄用,並計劃在 Python 3.18 中移除:
_PyBytes_Join():請改用PyBytes_Join()。_PyDict_GetItemStringWithError():請改用PyDict_GetItemStringRef()。_PyDict_Pop():請改用PyDict_Pop()。_PyLong_Sign():請改用PyLong_GetSign()。_PyLong_FromDigits()和_PyLong_New():請改用PyLongWriter_Create()。_PyThreadState_UncheckedGet():請改用PyThreadState_GetUnchecked()。_PyUnicode_AsString():請改用PyUnicode_AsUTF8()。_PyUnicodeWriter_Init():將_PyUnicodeWriter_Init(&writer)替換為writer=PyUnicodeWriter_Create(0)。_PyUnicodeWriter_Finish():將_PyUnicodeWriter_Finish(&writer)替換為PyUnicodeWriter_Finish(writer)。_PyUnicodeWriter_Dealloc():將_PyUnicodeWriter_Dealloc(&writer)替換為PyUnicodeWriter_Discard(writer)。_PyUnicodeWriter_WriteChar():將_PyUnicodeWriter_WriteChar(&writer,ch)替換為PyUnicodeWriter_WriteChar(writer,ch)。_PyUnicodeWriter_WriteStr():將_PyUnicodeWriter_WriteStr(&writer,str)替換為PyUnicodeWriter_WriteStr(writer,str)。_PyUnicodeWriter_WriteSubstring():將_PyUnicodeWriter_WriteSubstring(&writer,str,start,end)替換為PyUnicodeWriter_WriteSubstring(writer,str,start,end)。_PyUnicodeWriter_WriteASCIIString():將_PyUnicodeWriter_WriteASCIIString(&writer,str)替換為PyUnicodeWriter_WriteASCII(writer,str)。_PyUnicodeWriter_WriteLatin1String():將_PyUnicodeWriter_WriteLatin1String(&writer,str)替換為PyUnicodeWriter_WriteUTF8(writer,str)。_PyUnicodeWriter_Prepare():(無替代方案)。_PyUnicodeWriter_PrepareKind():(無替代方案)。_Py_HashPointer():請改用Py_HashPointer()。_Py_fopen_obj():請改用Py_fopen()。
可以使用pythoncapi-compat project 來取得這些於 Python 3.13 及更早版本的新公開函式。(由 Victor Stinner 在gh-128863 貢獻)
未來版本中的待移除項目¶
下列 API 已被棄用並將會被移除,不過目前尚未訂定移除日期。
Py_TPFLAGS_HAVE_FINALIZE:自 Python 3.8 起不再需要PySlice_GetIndicesEx():請改用PySlice_Unpack()和PySlice_AdjustIndices()。PyUnicode_READY():自 Python 3.12 起不再需要PyErr_Display():請改用PyErr_DisplayException()。_PyErr_ChainExceptions():請改用_PyErr_ChainExceptions1。PyBytesObject.ob_shash成員:請改為呼叫PyObject_Hash()。執行緒局部儲存 (Thread Local Storage, TLS) API:
建置變更¶
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-emscriptenis now aPEP 11 tier 3 platform.(Contributed by R. Hood Chatham ingh-127146,gh-127683, andgh-136931.)#pragma-based linking withpython3*.libcan 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-safetyconfigureoption to disable them,or the--enable-slower-safetyoption for a larger setof compiler options, albeit with a performance cost.The
WITH_FREELISTSmacro and--without-freelistsconfigureoption have been removed.The new
configureoption--with-tail-call-interpmay 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-debugconfigureoption.This may be useful for security reasons.iOS and macOS apps can now be configured to redirect
stdoutandstderrcontent 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').
也參考
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!
也參考
移植至 Python 3.14¶
本節列出了前面描述的更改以及可能需要更改程式碼的其他錯誤修復。
Python API 的變更¶
On Unix platforms other than macOS,forkserver is now the defaultstart method for
multiprocessingandProcessPoolExecutor, instead offork.If you encounter
NameErrors or pickling errors coming out ofmultiprocessingorconcurrent.futures, see theforkserver restrictions.This change does not affect Windows or macOS, where'spawn' remains the default start method.
functools.partialis 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_CTYPElocale in some cases.This temporary change affects other threads.(Contributed by Serhiy Storchaka ingh-69998.)types.UnionTypeis 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
mimetypesCLI public,it now exits with1on failure instead of0and2on incorrect command-line parameters instead of1.Error messages are now printed to stderr.The
\Bpattern in regular expression now matches the empty stringwhen given as the entire pattern, which may cause behavioural changes.On FreeBSD,
sys.platformno 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__importannotationsto 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__importannotationsfuture 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__importannotationsis unchanged.
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
TypeErrorif its exception argument is notaUnicodeErrorobject.(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()of1to determine if an function argument is notreferenced by any other code should instead usePyUnstable_Object_IsUniqueReferencedTemporary()as a safer replacement.被提升為公開 C API 的私有函式:
_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(): 使用PyUnicodeWriter_Create()_PyUnicodeWriter_Prepare(): (無替代方案)_PyUnicodeWriter_PrepareKind(): (無替代方案)_PyUnicodeWriter_WriteChar():PyUnicodeWriter_WriteChar()_PyUnicodeWriter_WriteStr():PyUnicodeWriter_WriteStr()_PyUnicodeWriter_WriteSubstring():PyUnicodeWriter_WriteSubstring()_PyUnicode_EQ():PyUnicode_Equal()_PyUnicode_Equal():PyUnicode_Equal()_Py_GetConfig():PyConfig_Get()和PyConfig_GetInt()_Py_HashBytes():Py_HashBuffer()_Py_fopen_obj():Py_fopen()PyMutex_IsLocked():PyMutex_IsLocked()
pythoncapi-compat project 可以用來在 Python 3.13 和更早版本中獲得這些新函式。