If that were true it would also apply to C and C++. I have used Valgrind with Python + Boost C++ hybrid programs and it worked fine after spending an hour making a suppressions file.
For me, a waaay outdated suppressions file for Qt + a rough understanding what syscalls and frameworks do is enough. If my app crashes in a network request and a byte sent to the X server (old example, I use Wayland now) is uninitialized, I know to ignore it.
Valgrind(-memcheck) is an extremely important tool in memory-unsafe languages.
giancarlostoro|5 months ago
So you are confirming the problem, but treating it as if ignoring it is the solution for all?
sauercrowd|5 months ago
EasyMark|5 months ago
ahartmetz|5 months ago
Valgrind(-memcheck) is an extremely important tool in memory-unsafe languages.