Python 3.14 is coming very soon™️, you can try it really easily with uv today. Here's a quick video of a few features (breakdown below):
#Tech Threads
First of all, updating uv and any already installed 3.14 pre-release versions lets you run the latest (final) release candidate of Python with simply: `uvx python3.14`. In literal seconds.
#Tech Threads
Second, you'll notice the interactive console (REPL) has syntax highlighting and autocomplete of imports! These are my favorite features by far in 3.14.
#Tech Threads
Third, functools have grown a new `Placeholder` which makes using `functools.partial()` a breeze when you want to "fix" a parameter that's not the first one.
#Tech Threads
Fourth, `concurrent.interpreters` and `InterpreterPoolExecutor` lets you run multiple Python interpreters in ~~your Python interpreter~~ a single process. I don't show it here, but it's trivial to run these interpreters in different threads without sharing any locks between them.
#Tech Threads