Reputation: 6754
Python script calls an external C++ function (using ctypes). Memory leaks are possible when execution the C++ function.
Will all allocated memory (in C++ function) be automatically cleaned up after finishing of the Python script?
Upvotes: 1
Views: 181
Reputation:
Yes, It will all be returned to the OS once the python interpreter exits. This is true for all processes - nothing specific to python or c++.
Upvotes: 2