#gil

[ follow ]
Python
fromTalkpython
2 months ago

2025 Python Year in Review

Python in 2025 is rapidly evolving: the GIL is being phased out, packaging and tooling are improving, and type checking and AI-related tooling are rapidly proliferating.
#python
Python
fromPythonbytes
4 months ago

Gilded Python and Beyond

Cyclopts replaces Typer's proxy-default CLI design with annotations to fix usability issues, while Python 3.14's free-threaded interpreter reduces GIL-related penalties to about 5–10%.
Web development
fromThe JetBrains Blog
4 months ago

Why Performance Matters in Python Development | The PyCharm Blog

Python's interpreted execution and the GIL cause performance bottlenecks; applying proven optimization techniques improves speed, scalability, and resource efficiency.
fromQuansight
6 months ago

Scaling asyncio on Free-Threaded Python

The Python standard library provides the asyncio module to facilitate writing high-performance concurrent code. By leveraging async/await syntax, it provides a high level API for creating and managing event loops, coroutines, tasks, and performing asynchronous I/O operations. It is used as a foundation for Python asynchronous frameworks that provide high-performance network and web-servers, database connection libraries, distributed task queues, etc. Multiple libraries and frameworks, such as FastAPI and aiohttp, are built on top of asyncio.
Software development
[ Load more ]