71 private links
This is a nice little algorithm and it shows how to approach it in Python while keeping it efficient in term of operations.
Some of this might sound obvious I guess. Still there are interesting lesser known nuggets proposed here.
Neat stories explaining those three important features of Python.
First rough benchmarks for CPython 3.14. It looks like the JIT isn't giving much improvement on the cases explored, the free threading on the other hand is a clear advantage for multithreaded cases. Of course as usual Pypy is still way faster. That said, like anything else: first measure in your own context before taking any decision.
It's out now, this is a big one with quite a few interesting features. Let's see how it's used in practice.
Early days but it looks like an interesting use of the t-strings introduced in Python 3.14.
This is not an easy case, even with the support of PyO3. This short article gives a nice blueprint to share a reference between Rust and Python.
Its use cases are indeed limited. It's a success for network IO. For everything else, the free threading might be the path forward once it stabilizes.
Looks like an interesting alternative to the bigger Django and FastAPI which get all the attention.
It's just hard to make Python fast. It can be improved yes, but it'll stay cache un-friendly without a redesign. Nobody wants a Python 4. :-)
uv really opens the door to nice features for Python. Now with a standardized PEP to help the configuration it's getting even better.
Early days but it looks like we got two interesting type checkers coming up for Python. Definitely worth keeping an eye on them.
Or why I'm still on the fence regarding async/await. It's rarely the panacea we pretend it to be.
Nice trick for numbers formatting as strings in Python.
Good proposals to shorten the time spent executing tests. Tighter feedback loops make everyone happy.
Good list of interesting features in Python. Some are tied to the gradual typing system but not all of them. Definitely tricks to keep in your bag.
A new type of strings to keep an eye on in the upcoming Python release.
There's a sustainability issue for the REST support with Django. Hopefully this will resolve.
Nice little Python trick using bidirectional generators.
More feedback about uv use in the wild. This is getting really close to becoming the de facto solution for new projects.