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.

Author vstinner
Recipients paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2018-07-03.09:21:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530609679.21.0.56676864532.issue33735@psf.upfronthosting.co.za>
In-reply-to
Content
> test_multiprocessing_spawn leaked [4, 5, 1, 5, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] memory blocks, sum=18

Sorry, I forgot to mention that I modified libregrtest to get this output:

diff --git a/Lib/test/libregrtest/refleak.py b/Lib/test/libregrtest/refleak.py
index 6724488fcf..a3c50e21e0 100644
--- a/Lib/test/libregrtest/refleak.py
+++ b/Lib/test/libregrtest/refleak.py
@@ -101,7 +101,7 @@ def dash_R(the_module, test, indirect_test, huntrleaks):
     failed = False
     for deltas, item_name, checker in [
         (rc_deltas, 'references', check_rc_deltas),
-        (alloc_deltas, 'memory blocks', check_rc_deltas),
+        (alloc_deltas, 'memory blocks', check_fd_deltas),
         (fd_deltas, 'file descriptors', check_fd_deltas)
     ]:
         # ignore warmup runs
History
Date User Action Args
2018-07-03 09:21:19vstinnersetrecipients: + vstinner, paul.moore, tim.golden, zach.ware, steve.dower
2018-07-03 09:21:19vstinnersetmessageid: <1530609679.21.0.56676864532.issue33735@psf.upfronthosting.co.za>
2018-07-03 09:21:19vstinnerlinkissue33735 messages
2018-07-03 09:21:19vstinnercreate