HackerTrans
TopNewTrendsCommentsPastAskShowJobs

grodola

no profile record

Submissions

From Python 3.3 to today: ending 15 years of subprocess polling

gmpy.dev
8 points·by grodola·5 miesięcy temu·1 comments

Detect memory leaks of C extensions with psutil and psleak

gmpy.dev
72 points·by grodola·7 miesięcy temu·10 comments

Wheels for free-threaded Python now available for psutil

gmpy.dev
72 points·by grodola·9 miesięcy temu·20 comments

comments

grodola
·5 miesięcy temu·discuss
For ~15 years, Python's subprocess.Popen.wait() implemented timeouts using busy-loop polling. This post explains how that was finally replaced with true event-driven waiting on POSIX systems: pidfd_open() + poll() on Linux and kqueue() on BSD / macOS. The result is zero polling and fewer context switches. The same improvement now landing both in psutil and CPython itself.
grodola
·7 miesięcy temu·discuss
I have released new psutil 7.2.0, which includes 2 new APIs to inspect C heap memory allocations.

I have also released a new tool called psleak, which detects memory leaks in C extension modules.

https://gmpy.dev/blog/2025/psutil-heap-introspection-apis

https://github.com/giampaolo/psleak/