• 0 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle

  • The response at PyCon and EuroPython was pretty favorable, and a lot of core devs seem into it. This is definitely gonna happen unless something big comes up.

    There was still a bit of discussion about the exact form (3.26 vs 3.2026 etc), but that is handled and I expect it to be on the standards track soon.





  • vzq@lemmy.worldtoPython@programming.devWriting Python like it’s Rust
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    edit-2
    1 year ago

    Python has gotten faster, but it’s still nowhere near what you expect from traditional compiled languages. It can’t be.
    The trick to writing performant Python code is to get good (native) libraries and let it handle the heavy lifting.

    For performance sensitive stuff, the fact that pure Python is very slow really matters. For stuff that’s not performance sensitive (that is, 99% of the code out there) it doesn’t really matter, but even then it’s better to be fast than to be slow.

    Now this is not something I would ordinarily have a problem with. I use Python for a reason and it’s not performance. But if I end up writing Python like it’s rust, I might as well do rust and reap the (massive!!!) performance and memory profile benefits too while I’m at it.