[issue40699] Memory leak in threading library with Python 3.6-3.8

2021-09-24 Thread STINNER Victor
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

[issue40699] Memory leak in threading library with Python 3.6-3.8

2020-05-20 Thread Cristian Martinez de Morentin
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