diff options
author | Koki Saito <49419225+saito828koki@users.noreply.github.com> | 2022-10-04 14:29:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 22:29:17 -0700 |
commit | 27e59afa2ad98e6bfe26c6b2b7f6294fa561680c (patch) | |
tree | d3596e247956ea6f6f173b9547bdf3b1616700d1 /Lib/multiprocessing/managers.py | |
parent | 5e997cff3e1dea24241726338457611beb8882ec (diff) | |
download | cpython-git-27e59afa2ad98e6bfe26c6b2b7f6294fa561680c.tar.gz |
gh-97816: Remove unused variables in `mutliprocessing.managers.Server` (#97817)
Remove unused local variables.
Diffstat (limited to 'Lib/multiprocessing/managers.py')
-rw-r--r-- | Lib/multiprocessing/managers.py | 1 |
1 files changed, 0 insertions, 1 deletions
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 |