On Saturday, August 17, 2019 at 2:40:14 AM UTC-7, Abdur-Rahmaan Janhangeer
wrote:
> But it is not so easy to combine different memory management paradigms.
Oh, I feel this. I love the look and feel of PyQt5, but object management has
bitten me more than once.
--
https://mail.python.org/mailman
RAII, auto and shared pointers. Guido van Rossum
> found that C++ was also not simple enough. He chose another way and
> invented Python - a language which doesn’t have even malloc() or free().
> Meanwhile Norwegian trolls created the C++ GUI library Qt. It simplifies
> memory management
Abdur-Rahmaan Janhangeer writes:
> Was browsing when i came across this hilarious piece of text:
>
> source: http://enki-editor.org/2014/08/23/Pyqt_mem_mgmt.html
>
I haven't searched for it though, but I guess if there is a Qt like
framework in Rust then a Python wrapper around it would behave mo
C++. In addition to malloc() and free(), C++ had
new, delete, destructors, RAII, auto and shared pointers. Guido van Rossum
found that C++ was also not simple enough. He chose another way and
invented Python - a language which doesn’t have even malloc() or free().
Meanwhile Norwegian trolls created