STINNER Victor added the comment:
I fail to reproduce the leak using attached script.
I close the issue.
I get constant memory usage on Linux with the main branch of Python (future
3.11):
(...)
VmRSS: 11344 kB
VmRSS: 11344 kB
VmRSS: 11344 kB
VmRSS: 11344 kB
VmRSS: 11344
New submission from Cristian Martinez de Morentin :
Hi everyone,
I have found a memory leak when using Queue and Condition from threading
library.
The issue can be reproduced with the following code:
import queue
import threading
cla