Eric Snow

Results 247 comments of Eric Snow

Regarding PEP 687, you can see the implementation status on https://github.com/python/cpython/issues/103092. Only the faulthandler module is left and I'm not sure that's worth waiting to mark the PEP as final.

Is `sys.implementation` the right place? It should have things related only to the Python implementation, that other implementations also have. The architecture is a build characteristic and the api partitions...

My main concern was/is that this information doesn't belong on `sys.implementation`. That's meant for information about the Python *implementation* (e.g. cpython, pypy, jython, micropython), not about the *build*. See [PEP...

Thanks for the detailed analysis (and PR), @adr26! I'll take a look.

@adr26, I started taking a look at this, but realized that there have been quite a few changes in this area recently for the free-threading build. Could you take a...