How would you go about finding out how much memory is being used by an object in python?
I know it is possible to find out how much is used by a block of code, but not by an instantiated object anytime in its life, which is what I want.
EDIT: decided to go with the stats that task manager gives me. Based on the strong evidence that what I want to do is impossible without modifying python, both from fserb and from the heapy documentation.