From 27e59afa2ad98e6bfe26c6b2b7f6294fa561680c Mon Sep 17 00:00:00 2001 From: Koki Saito <49419225+saito828koki@users.noreply.github.com> Date: Tue, 4 Oct 2022 14:29:17 +0900 Subject: gh-97816: Remove unused variables in `mutliprocessing.managers.Server` (#97817) Remove unused local variables. --- Lib/multiprocessing/managers.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Lib/multiprocessing/managers.py') diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py index 3f6479b7e3..b6534939b4 100644 --- a/Lib/multiprocessing/managers.py +++ b/Lib/multiprocessing/managers.py @@ -433,7 +433,6 @@ class Server(object): self.id_to_refcount[ident] = 1 self.id_to_obj[ident] = \ self.id_to_local_proxy_obj[ident] - obj, exposed, gettypeid = self.id_to_obj[ident] util.debug('Server re-enabled tracking & INCREF %r', ident) else: raise ke -- cgit v1.2.1