Skip to content

[3.6] bpo-30775: Clear potential ref cycle between Process and Process target (GH-2470) #2471

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Lib/multiprocessing/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ def start(self):
_cleanup()
self._popen = self._Popen(self)
self._sentinel = self._popen.sentinel
# Avoid a refcycle if the target function holds an indirect
# reference to the process object (see bpo-30775)
del self._target, self._args, self._kwargs
_children.add(self)

def terminate(self):
Expand Down
18 changes: 18 additions & 0 deletions Lib/test/_test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,12 @@ def get_value(self):
# Testcases
#

class DummyCallable:
def __call__(self, q, c):
assert isinstance(c, DummyCallable)
q.put(5)


class _TestProcess(BaseTestCase):

ALLOWED_TYPES = ('processes', 'threads')
Expand Down Expand Up @@ -398,6 +404,18 @@ def test_sentinel(self):
p.join()
self.assertTrue(wait_for_handle(sentinel, timeout=1))

def test_lose_target_ref(self):
c = DummyCallable()
wr = weakref.ref(c)
q = self.Queue()
p = self.Process(target=c, args=(q, c))
del c
p.start()
p.join()
self.assertIs(wr(), None)
self.assertEqual(q.get(), 5)


#
#
#
Expand Down