Victor Stinner

Results 702 comments of Victor Stinner

Reproducer modified to use `www.google.com` and display the RSS memory usage at each iteration: ```py import httpx import asyncio import gc import os def get_rss(): with open(f"/proc/{os.getpid()}/status") as fp: for...

> We can't really determine how many additional loops are needed Something like https://cran.r-project.org/web/packages/changepoint/index.html (in the R language) may help for such task. I failed to do something similar in...