schmeii
No user record in our sample, but schmeii has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but schmeii has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
There is a flag to enable it, and the default is to run with the GIL.
This pep only affect the C world. It will not require change in Python code.
I don't think that is possible to activate the GIL only for one thread, it has to be activated process-wide. But, if you want free-threading but you have to use an old extension that is not GIL-less, then you still can,…
Probably in the long-term the two build-mode will be merged and there will only be a "nogil" build-mode. Which doesn't mean there will be no GIL. Contrary to popular belief the goal of PEP 703 is not to remove the GIL,…
There already is such a mechanism in the pep. Basically there will be two build mode. The standard build that you get at python.org will work exactly as now (so with a Gil). The disable-gil build (which will most likely…
That is not true. If an extension doesn't advertise that it is thread safe, the GIL get activated at runtime so it will work exactly like it does now.