this post was submitted on 09 Jul 2023
36 points (100.0% liked)

Python

6153 readers
13 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

📅 Events

October 2023

November 2023

PastJuly 2023

August 2023

September 2023

🐍 Python project:
💓 Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 1 year ago
MODERATORS
top 5 comments
sorted by: hot top controversial new old
[–] csm10495 12 points 1 year ago (2 children)

Hey a positive thing about Meta. Cool.

Nogil has great potential to make Python closer to first class for parallel processing. Having man power gives the SC more reason to push forward.

[–] [email protected] 8 points 1 year ago

Meta the company and its profitability goals suck. However in pursuit of those goals I find their OSS contributions and project management to be pretty good.

[–] [email protected] 3 points 1 year ago

Their work on Btrfs is also much appreciated.

[–] [email protected] 5 points 1 year ago

And whether PEP 703 is accepted will probably depend quite a lot on the result of this poll: https://discuss.python.org/t/poll-feedback-to-the-sc-on-making-cpython-free-threaded-and-pep-703/28540

[–] [email protected] 4 points 1 year ago

For those wondering what PEP 703 is:

CPython’s global interpreter lock (“GIL”) prevents multiple threads from executing Python code at the same time. The GIL is an obstacle to using multi-core CPUs from Python efficiently. This PEP proposes adding a build configuration (--disable-gil) to CPython to let it run Python code without the global interpreter lock and with the necessary changes needed to make the interpreter thread-safe.