
April 2, 2020
1:31 a.m.
On Thu, Apr 2, 2020 at 12:27 PM Kyle Stanley <aeros167@gmail.com> wrote:
As Chris Angelico mentioned, this can be observed through monitoring the before and after RSS (or equivalent on platforms without it). On Linux, I typically use something like this:
``` def show_rss(): os.system(f"grep ^VmRSS /proc/{os.getpid()}/status") ```
How do the figures from that compare with what you get from the stdlib resources module? ChrisA