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 | |
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.
-rw-r--r-- | Lib/multiprocessing/managers.py | 1 | ||||
-rw-r--r-- | Misc/ACKS | 1 |
2 files changed, 1 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 @@ -1559,6 +1559,7 @@ Patrick Sabin Sébastien Sablé Amit Saha Suman Saha +Koki Saito Hajime Saitou George Sakkis Victor Salgado |