This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Windows: leak in test_concurrent_futures
Type: resource usage Stage: resolved
Components: Extension Modules Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: bquinlan, pitrou, skrah
Priority: normal Keywords: patch

Created on 2010-11-27 18:40 by skrah, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
posixmodule_listdir.patch skrah, 2010-11-27 18:47 review
Messages (5)
msg122539 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2010-11-27 18:40
C:\Users\stefan\svn\py3k_64>PCbuild\amd64\python_d.exe Lib\test\regrtest.py -R : test_concurrent_futures
[1/1] test_concurrent_futures
beginning 9 repetitions
123456789
.........
test_concurrent_futures leaked [6912, 6912, 6912, 6912] references, sum=27648
1 test failed:
    test_concurrent_futures
[195615 refs]
msg122541 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2010-11-27 18:47
posixmodule_listdir.patch fixes a leak in test_macpath. test_concurrent_futures still leaks.
msg122566 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2010-11-27 22:10
Committed posixmodule_listdir.patch in r86843. Unfortunately this
is unrelated to the test_concurrent_futures leak.
msg131836 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-03-23 01:32
Can you try to see if the refleak is still there? I can't reproduce on my Windows 7 VM.
msg131856 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2011-03-23 08:56
I can't reproduce it any more. Looks like it has been fixed in the
meantime.
History
Date User Action Args
2022-04-11 14:57:09adminsetgithub: 54759
2011-03-23 08:56:46skrahsetstatus: open -> closed
nosy: bquinlan, pitrou, skrah
messages: + msg131856

resolution: fixed
stage: resolved
2011-03-23 01:32:46pitrousetnosy: + pitrou
messages: + msg131836
2010-11-27 22:10:10skrahsetmessages: + msg122566
2010-11-27 19:28:56skrahsetnosy: + bquinlan
2010-11-27 18:47:38skrahsetfiles: + posixmodule_listdir.patch
keywords: + patch
messages: + msg122541
2010-11-27 18:40:21skrahcreate