diff options
author | Koki Saito <49419225+saito828koki@users.noreply.github.com> | 2022-10-04 05:29:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 05:29:17 (GMT) |
commit | 27e59afa2ad98e6bfe26c6b2b7f6294fa561680c (patch) | |
tree | d3596e247956ea6f6f173b9547bdf3b1616700d1 /Lib | |
parent | 5e997cff3e1dea24241726338457611beb8882ec (diff) | |
download | cpython-27e59afa2ad98e6bfe26c6b2b7f6294fa561680c.zip cpython-27e59afa2ad98e6bfe26c6b2b7f6294fa561680c.tar.gz cpython-27e59afa2ad98e6bfe26c6b2b7f6294fa561680c.tar.bz2 |
gh-97816: Remove unused variables in `mutliprocessing.managers.Server` (#97817)
Remove unused local variables.
Diffstat (limited to 'Lib')
-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 3f6479b..b653493 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 |