From e7c739149756d4112b36465b948e9b84f7e4d925 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 2 Aug 2018 22:37:41 -0400 Subject: [PATCH] Drop needless tuple unpack --- tractor/_trionics.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tractor/_trionics.py b/tractor/_trionics.py index 7312cca..569f731 100644 --- a/tractor/_trionics.py +++ b/tractor/_trionics.py @@ -59,11 +59,10 @@ class ActorNursery: not self._actor._forkserver_info ): # if we're the "main" process start the forkserver only once - # and pass it's ipc info to downstream children - + # and pass its ipc info to downstream children # forkserver.set_forkserver_preload(rpc_module_paths) forkserver.ensure_running() - fs_info = addr, alive_fd, pid, st_pid, st_fd = ( + fs_info = ( fs._forkserver_address, fs._forkserver_alive_fd, getattr(fs, '_forkserver_pid', None),