Python 3.14 has great new features like:
- Free-threaded Python is now officially supported
- Template string literals (t-strings) for custom string processing
- Syntax highlighting in PyREPL and more!
Great work , congratulations with this release!
dlojudice•1h ago
+ experimental JIT compiler
this could be the beginning of something very promising
Neywiny•1h ago
Problem is, it's too late. Most performant code I've seen and written isn't using numba, it's using numpy to vectorize. And sadly, there's a lot of wasted iteration when doing that just to be faster than scaler. My point being, that code won't speed up at all without a rewrite.
runningmike•2h ago
- Template string literals (t-strings) for custom string processing
- Syntax highlighting in PyREPL and more!
Great work , congratulations with this release!
dlojudice•1h ago
this could be the beginning of something very promising
Neywiny•1h ago