[PySide] Is there a tutorial on good debugging techniques for PySide?
Bob Hood
bhood2 at comcast.net
Mon Feb 15 21:08:41 CET 2016
On 2/15/2016 12:56 PM, Stefan Champailler wrote:
> Alas poor Kevin,
>
> You most probably felt into the memory leaks/garbage collections issue.
>
> Since Qt is C++ and PySide is python, there's a mismatch in the memory models (C++ is managed memory, python is garbage collected)...
Just to be clear, Qt has a managed memory model (as long as you remain inside
the Qt ecosystem), C++ does not. You as a developer are just as responsible
for managing memory usage (e.g., heap) in C++ as you are in C.
More information about the PySide
mailing list