fanninpm

Results 128 comments of fanninpm

What is your platform? I cannot reproduce on macOS (Ventura, M1) or Linux (Arch Linux, x86_64). ```text Welcome to the magnificent Rust Python 0.2.0 interpreter 😱 🖖 >>>>> import platform...

> in cpython 3.11.6 Have you tried CPython 3.12?

> Use compile and exec from within the CPython context to compile and execute benchmarks. There's probably more overhead to that than the internal API had, but that overhead should...

Also, if I recall correctly, the RustPython benchmarks will eat up a lot of memory because RustPython presently has no garbage collection more advanced than simple reference-counting and needs circular...

The reason I warned about GC is so that you're not surprised if the benchmarks crash due to your system not having enough RAM. (From what I recall, RustPython chews...

Usually, the commits that have anything to do with RustPython are separated from the commits that contain changes made in CPython by CPython developers.

The CI failures seem unrelated.

It seems this would require a Rust implementation of the `_ctypes` module, which seems to be a difficult problem to solve. (See also #1217.) If you are up for the...