home.social

#mypyc — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #mypyc, aggregated by home.social.

  1. Other #PyConUS sprints this week:

    * #RAPIDSai
    * django-simple-deploy and py-bugger
    * #PyFyre, #MyPy, and #MyPyC
    * MemRay
    * #Ruff or Ty from Astral
    * #WheelNext
    * ci-test / linting-arguments-python

    Additionally there will be an "Introduction to Sprints" open space in Room 310 at 6:00 PM.

    #PyConUS2025

  2. Other #PyConUS sprints this week:

    * #RAPIDSai
    * django-simple-deploy and py-bugger
    * #PyFyre, #MyPy, and #MyPyC
    * MemRay
    * #Ruff or Ty from Astral
    * #WheelNext
    * ci-test / linting-arguments-python

    Additionally there will be an "Introduction to Sprints" open space in Room 310 at 6:00 PM.

    #PyConUS2025

  3. Other #PyConUS sprints this week:

    * #RAPIDSai
    * django-simple-deploy and py-bugger
    * #PyFyre, #MyPy, and #MyPyC
    * MemRay
    * #Ruff or Ty from Astral
    * #WheelNext
    * ci-test / linting-arguments-python

    Additionally there will be an "Introduction to Sprints" open space in Room 310 at 6:00 PM.

    #PyConUS2025

  4. Other #PyConUS sprints this week:

    * #RAPIDSai
    * django-simple-deploy and py-bugger
    * #PyFyre, #MyPy, and #MyPyC
    * MemRay
    * #Ruff or Ty from Astral
    * #WheelNext
    * ci-test / linting-arguments-python

    Additionally there will be an "Introduction to Sprints" open space in Room 310 at 6:00 PM.

    #PyConUS2025

  5. Other #PyConUS sprints this week:

    * #RAPIDSai
    * django-simple-deploy and py-bugger
    * #PyFyre, #MyPy, and #MyPyC
    * MemRay
    * #Ruff or Ty from Astral
    * #WheelNext
    * ci-test / linting-arguments-python

    Additionally there will be an "Introduction to Sprints" open space in Room 310 at 6:00 PM.

    #PyConUS2025

  6. #ty #mypy - but mypy already compiles itself to c via #mypyc so being faster isn't what I'd be expecting, it will be different and probably find different typing errors since for all the type checkers, it comes down to a matter of opinion. Do you think that will be a runtime error? That's in the future, who knows man.

  7. #ty #mypy - but mypy already compiles itself to c via #mypyc so being faster isn't what I'd be expecting, it will be different and probably find different typing errors since for all the type checkers, it comes down to a matter of opinion. Do you think that will be a runtime error? That's in the future, who knows man.

  8. #ty #mypy - but mypy already compiles itself to c via #mypyc so being faster isn't what I'd be expecting, it will be different and probably find different typing errors since for all the type checkers, it comes down to a matter of opinion. Do you think that will be a runtime error? That's in the future, who knows man.

  9. #ty #mypy - but mypy already compiles itself to c via #mypyc so being faster isn't what I'd be expecting, it will be different and probably find different typing errors since for all the type checkers, it comes down to a matter of opinion. Do you think that will be a runtime error? That's in the future, who knows man.

  10. #ty #mypy - but mypy already compiles itself to c via #mypyc so being faster isn't what I'd be expecting, it will be different and probably find different typing errors since for all the type checkers, it comes down to a matter of opinion. Do you think that will be a runtime error? That's in the future, who knows man.

  11. Here is an example of how I used #cibuildwheel with #mypyc (which in theory can compile to C anything that you can perfectly type annotate)

    github.com/matthewdeanmartin/u

  12. Here is an example of how I used #cibuildwheel with #mypyc (which in theory can compile to C anything that you can perfectly type annotate)

    github.com/matthewdeanmartin/u

  13. Here is an example of how I used #cibuildwheel with #mypyc (which in theory can compile to C anything that you can perfectly type annotate)

    github.com/matthewdeanmartin/u

  14. Here is an example of how I used #cibuildwheel with #mypyc (which in theory can compile to C anything that you can perfectly type annotate)

    github.com/matthewdeanmartin/u

  15. Here is an example of how I used #cibuildwheel with #mypyc (which in theory can compile to C anything that you can perfectly type annotate)

    github.com/matthewdeanmartin/u

  16. So if I take ordinary #python (no math to speak of) and

    #cythonize it
    #mypyc it

    No obvious pattern on if it is faster or not. I don't know where the 20% to 200x rule of thumb came from (that I've seen in various conference talks)

  17. So if I take ordinary #python (no math to speak of) and

    #cythonize it
    #mypyc it

    No obvious pattern on if it is faster or not. I don't know where the 20% to 200x rule of thumb came from (that I've seen in various conference talks)

  18. So if I take ordinary #python (no math to speak of) and

    #cythonize it
    #mypyc it

    No obvious pattern on if it is faster or not. I don't know where the 20% to 200x rule of thumb came from (that I've seen in various conference talks)

  19. So if I take ordinary #python (no math to speak of) and

    #cythonize it
    #mypyc it

    No obvious pattern on if it is faster or not. I don't know where the 20% to 200x rule of thumb came from (that I've seen in various conference talks)

  20. So if I take ordinary #python (no math to speak of) and

    #cythonize it
    #mypyc it

    No obvious pattern on if it is faster or not. I don't know where the 20% to 200x rule of thumb came from (that I've seen in various conference talks)

  21. I've been trying every x months to speed up #python with native code. This weekend with half-assed effort I got a rust + python thing going.

    The magic: #maturin + #pyo3

    - c, go, c++, #cython - failed because the difficult level of dealing with the build scripts. And c, c++ are just nasty.
    - #mypyc - Almost worked, but failed, the annotations have to be a perfect subset of what mypyc can handle.

    Mypyc and cython need something like maturin if they want get widespread adoption.

  22. I've been trying every x months to speed up #python with native code. This weekend with half-assed effort I got a rust + python thing going.

    The magic: #maturin + #pyo3

    - c, go, c++, #cython - failed because the difficult level of dealing with the build scripts. And c, c++ are just nasty.
    - #mypyc - Almost worked, but failed, the annotations have to be a perfect subset of what mypyc can handle.

    Mypyc and cython need something like maturin if they want get widespread adoption.

  23. I've been trying every x months to speed up #python with native code. This weekend with half-assed effort I got a rust + python thing going.

    The magic: #maturin + #pyo3

    - c, go, c++, #cython - failed because the difficult level of dealing with the build scripts. And c, c++ are just nasty.
    - #mypyc - Almost worked, but failed, the annotations have to be a perfect subset of what mypyc can handle.

    Mypyc and cython need something like maturin if they want get widespread adoption.

  24. I've been trying every x months to speed up #python with native code. This weekend with half-assed effort I got a rust + python thing going.

    The magic: #maturin + #pyo3

    - c, go, c++, #cython - failed because the difficult level of dealing with the build scripts. And c, c++ are just nasty.
    - #mypyc - Almost worked, but failed, the annotations have to be a perfect subset of what mypyc can handle.

    Mypyc and cython need something like maturin if they want get widespread adoption.

  25. I've been trying every x months to speed up #python with native code. This weekend with half-assed effort I got a rust + python thing going.

    The magic: #maturin + #pyo3

    - c, go, c++, #cython - failed because the difficult level of dealing with the build scripts. And c, c++ are just nasty.
    - #mypyc - Almost worked, but failed, the annotations have to be a perfect subset of what mypyc can handle.

    Mypyc and cython need something like maturin if they want get widespread adoption.