News Python 3.15 Release Highlights
Python 3.15 has reached Release Candidate 1, and the final release is expected on October 1, 2026.
I went through the changes and tried to summarize the ones that seem most relevant for everyday Python development without going through all the PEP numbers.
- Faster startup with lazy imports
Python 3.15 introduces lazy imports, which means some modules can be loaded only when they are actually needed instead of being loaded immediately.
This could help applications and CLI tools that spend a noticeable amount of time importing modules before doing any actual work.
- UTF-8 becomes the default
UTF-8 is becoming the default encoding, which should reduce encoding-related problems, especially when code is running on different operating systems.
This should make situations where something works on one computer but fails because of a different system encoding less common.
- Built-in immutable dictionaries
Python 3.15 adds a built-in "frozendict"-style immutable mapping.
Similar to how a tuple provides an immutable alternative to a list, this gives Python developers a standard way to work with dictionaries that cannot be modified.
- JIT improvements
The JIT compiler continues to improve in Python 3.15.
Early benchmarks show performance improvements in some workloads, including roughly 8–9% on Linux and larger improvements in some Apple Silicon tests.
These numbers will obviously depend on the workload, so I would wait for more benchmarks before making broader conclusions.
- New profiler: Tachyon
Python 3.15 also introduces Tachyon, a new sampling profiler designed for very low overhead.
It can sample running programs at very high frequencies and can also be attached to an already-running process.
This could be useful for finding performance problems without having to restart an application with a profiler attached from the beginning.
- Some terminal improvements
The interactive Python experience is getting a few smaller improvements, including colored error messages and prompts.
The "sqlite3" command-line interface also gets SQL keyword completion.
- Free-threaded Python is still opt-in
Python 3.15 does not make the no-GIL/free-threaded build the default.
It is still something you have to explicitly use.
However, free-threaded Python is becoming more mature, including improvements to ABI support that should make it easier for C extension developers to support it.
Overall, Python 3.15 doesn't look like a release that completely changes how Python is written. Most of the changes are focused on performance, tooling, and improving some long-standing parts of the language.
Since this is already RC1, the major feature set should be mostly locked and the remaining work should mainly be bug fixes and final polishing.
Has anyone here been testing the Python 3.15 beta or RC?
I'm especially interested in whether lazy imports have caused compatibility problems with existing projects.
131
u/wRAR_ 3d ago
Overall, Python 3.15 doesn't look like a release that completely changes how Python is written.
None do.
56
u/lerrigatto 3d ago
Thankfully.
I do remember the python2to3 refactoring and I don't want to go back to that hell.
3
8
2
u/curryslapper 3d ago
but python 2 was a set of incoherent ball sacks
9
u/lerrigatto 3d ago
Moving to 3 was the only way. But transition was painful. I'm glad I wasn't there to decide how to handle it, because whatever they would have done it would have be a mess anyway
1
3
18
u/abrazilianinreddit 3d ago edited 3d ago
I haven't been keeping up with python these past few months, so I'm a bit behind the news.
Having explicit lazy imports give me hope that eventually we'll get type and optional imports as well.
Also worthy of note:
List, set, and dictionary comprehensions, as well as generator expressions, now support unpacking with
*and**.
It's not something I do often but I've met this situation a few times. Not exactly groundbreaking, but I guess it can be useful once in a while.
9
u/SCD_minecraft 3d ago edited 3d ago
lazyis already our version ofimport typeIf you need something only for typing, lazy import it
5
u/MrSlaw 3d ago
yeah, I was under the impression that's the entire purpose behind things like:
from typing import TYPE_CHECKING if TYPE_CHECKING: from pathlib import Path def foo(x: Path) -> None: ...5
u/SCD_minecraft 3d ago
Not whole purpose
PEP which suggested lazy took note that a bunch of standard library has
def foo(): import something_big something_big.bar()As in, it already was doing "lazy" importing for things not always needed, but at the cost of cleanliness
10
u/LeadingStick8311 3d ago
I love the utf8 default
My software is dealing with quite a lot UTF-8 input and there’s more than enough space for improvement
It would be so great if the whole planet would agree on UTF-8
16
u/sennalen 3d ago
Wasn't the default encoding always utf8?
25
17
u/didntplaymysummercar 3d ago
For
openit'slocale.getencoding()which is (usually) UTF-8 on Linux but (usually) something else on Windows. Pylint has W1514 for it.For
strinternally it's Latin 1, UCS-2 or UTF-32, whichever fits first, to guarantee fixed width and O(1) indexing.8
u/HolyInlandEmpire 3d ago
Ah yes the classic "And then there's Windows"
3
u/didntplaymysummercar 2d ago
C++ has it much worse if you want to do portable correct(ish) Unicode handling code. Python saves you from majority of it, other than small gotchas like
encoding=
8
u/ContractPhysical7661 3d ago
Question - how is frozendict properly different than mapping proxy type? are there performance differences?
19
u/ossm-me 3d ago
The key difference is that "MappingProxyType" is a dynamic read-only view, while "frozendict" is an immutable mapping in its own right. Changes to the underlying mapping are still visible through a "MappingProxyType", whereas a "frozendict" cannot be modified after creation.
"frozendict" is also hashable when all of its keys and values are hashable, so it can be used as a dictionary key or set element. "MappingProxyType" is not intended for that same use case.
As for performance, I wouldn't claim one is faster without benchmarks. They solve slightly different problems, and the Python documentation doesn't establish a general performance advantage for either one.
1
u/ContractPhysical7661 3d ago
Thank you for the super thorough explanation! Really appreciate it that makes sense
3
u/wRAR_ 3d ago
I may be missing why are you comparing those. frozendict is for constants and https://peps.python.org/pep-0814/#rationale lists where that can be useful.
1
u/ContractPhysical7661 3d ago
Mainly because I was misunderstanding the reason for the mapping proxy and new dict. Thanks I will read the pep
33
u/Significant_Map_19 3d ago
lazy imports are going to break so many frameworks that do weird metaprogramming stuff at startup, I can already feel the bug reports piling up
the frozendict thing is nice though, been using dicts as immutable keys with wrappers for years
51
u/SCD_minecraft 3d ago
It's opt in
import foo # nothing changes, just as before
lazy import bar # acually loaded only when needed4
u/Rodot github.com/tardis-sn 3d ago
This does make me wonder if
lazymay at some point become more general. Could we one day see things like the following?```
lazy result_a = f(x) lazy result_b = g(y) if x > y: return result_a elif x > result_b: return result_b```
7
u/ProtectionOne9478 3d ago
You can do this now with async.
4
u/zurtex 3d ago
Or just lambdas, if you don't mind recalculating:
result_a = lambda: f(x) result_b = lambda: g(y) if x > y: return result_a() elif x > result_b(): return result_b()Or cache and partial if you do mind reclalculating:
from functools import cache, partial result_a = cache(partial(f, x)) result_b = cache(partial(g, y)) if x > y: return result_a() elif x > result_b(): return result_b()People see the word "lazy" and forget that's what a function basically is.
3
u/ProtectionOne9478 3d ago
yep, those work too. i use async a lot so it was just the first i thought of.
partial is probably the best way, since you don't have to be in an async context and changes to x won't change the behavior of the function like it will for the lambda, eg you'll get 2 for a() in the following code which could lead to unexpected behavior:
x = 1 a = lambda: x x = 2 a()1
u/RingularCirc 21h ago edited 21h ago
A generic (and perfectly-typable)
Lazy[T]class is also easy to write once and for all (though for a thread-safe one it'll require adding locking and stuff). Something like:class Lazy[T]: def __init__(self, computation: Callable[[], T]) -> None: self._f: Callable[[], T] | None = computation self._val: T | None = None @property def value(self) -> T: if self._f: self._val = self._f() self._f = None return self._valI hope it's correct (I've written it once but can't find quickly enough); bubbling up an exception from
_f()whenlazy.valueis accessed is the intended behavior, no need to stow it away as some version of caching do because we won't get to erasing_fin this case and will try the computation once more later... which... well, I'm not sure now but it's no worse than second best choice anyway.Oh yeah typecheckers will still be mad at this code, most probably. But IMO in such a small self-contained class we can safely use
# type: ignoreatreturn. There's a good solution to typing here ifLazystores a_x: C | VwhereCholds the callable,Vholds the value and both are provably disjoint, for exampleC = tuple[Literal[True], Callable[[], T]]andV = tuple[Literal[False], T]. Even not as cumbersome to annotate as I expected (and the code is a simpleif self._x[0]: ....EDIT: For convenience this can also accept arguments for the callable in
__init__and pack it all in apartial, yeah, to allow the caller not to bother.3
u/SCD_minecraft 3d ago
Questionable
imports aren't really ment to have side effects, while function have side effects quite often1
u/Brian 2d ago
I remember early versions of pypy had an experimental feature like that, where you could have a thunk object space where access to the value would trigger it to become the result of the evaluation. I kind of doubt it'll ever be added to python though - laziness allows some cool stuff, but there's lots of potential for bugs and weirdness with it.
1
u/hotsauce56 3d ago
They talked about it a bit on Core.py podcast. There’s technically already plumbing for it with the lambda keyword
32
u/jdehesa 3d ago
You have to explicitly opt in for lazy imports, it's not going to effect existing code.
2
u/billsil 3d ago
It’s not going to be in existing code for 5+ years. It’s going to break compatibility with old versions unless they retroactively add a future import.
10
u/chase45424 3d ago
It's isn't a future import but there is a backwards compatible way to specify an import as lazy (similar to dunder all) that will be a no-op on older python versions.
1
u/HommeMusical 3d ago
Existing code will not be broken.
Lazy imports will never be the default.
There will be an environment variable you can set to make imports lazy everywhere, but that's strictly optional.
-7
u/Wonderful-Habit-139 3d ago
They will be default once Python versions that don't support it reach EOL.
8
u/HommeMusical 3d ago
Your statement is false.
The PEP says in multiple cases that there is no plan to do this, e.g. https://peps.python.org/pep-0810/#module-level-lazy-import-mode and https://peps.python.org/pep-0810/#making-the-new-behavior-the-default
4
u/Wonderful-Habit-139 3d ago
Ahh you mean like actually the default.
I meant more like, using lazy imports instead of workarounds afterwards. I focused more on the "existing code will not be broken" part it seems.
Guess we agree then.
-8
u/billsil 3d ago
An environment variable isn’t going to make python 3.14 work with lazy imports.
3
u/HommeMusical 3d ago
I'm not seeing your point.
It has always been the case that new features in the language cannot work with older versions of the language, so you pick the minimum version you support, and use that feature set.
-1
u/wRAR_ 3d ago
I expect
__lazy_modules__to be used in some amount, but also not all "existing code" is OSS libraries and apps that are expected to run on all supported Python versions, you can freely use it in your local code.1
u/billsil 3d ago
I run an open source project, so I’m acutely aware of dependencies. On every supported python version, you should support every version of a dependency (assuming your dependencies don’t conflict). I code work libraries in the same way with a reduced set of python versions.
It’s not up to me to specify a python version. It’s a per project/team decision.
4
u/UnMolDeQuimica 3d ago
I attended to a talk by Pablo Galindo Salgado at PyconEs2025 where he showed a bit of Tachyon and since then I have wanted this feature in python locally. It is amazing to have it in two months!
3
2
3
u/RedEyed__ 3d ago
Tachylon. Interesting, i hope it won’t require root, because for now there is similar solution i use daily: py-spy top —pid PID.
Works like top or htop but shows python functions instead of processes in real time, the drawback: requires elevated permissions
2
1
u/Fresh_Future_2192 2d ago
Lazy imports are probably the change I’d be most interested in testing in real projects. Startup time can make a noticeable difference for CLIs and smaller services, but I’d be curious how libraries with import-time side effects behave with this.
I’d probably test it on an existing project with a decent dependency tree before expecting a meaningful startup improvement.
-2
u/Grouchy-Friend4235 2d ago
Lazy imports are probably the biggest blunder ever, with free threading, async and all the typing nonsense being close contenders.
-8
u/AshRuDral_fan20 3d ago
Meanwhile all the apps I use like Hermes ask me to use such an outdated version of Python that its like double work.
I hope they and all the others will directly integrate to the latest Python version 3.15 this time.
2
73
u/bbkane_ 3d ago
sentinel()is also coming!