On Fri, Jul 10, 2020 at 01:06:40AM -0400, John Snow wrote: > Some parts of cleanup need to occur prior to shutdown, otherwise > shutdown might break. Move this into a suitably named method/callback. > > Signed-off-by: John Snow > --- > python/qemu/machine.py | 24 +++++++++++++++--------- > 1 file changed, 15 insertions(+), 9 deletions(-) > > diff --git a/python/qemu/machine.py b/python/qemu/machine.py > index 938c891b1d..4280aab380 100644 > --- a/python/qemu/machine.py > +++ b/python/qemu/machine.py > @@ -354,16 +354,9 @@ def _launch(self): > close_fds=False) > self._post_launch() > > - def wait(self): > + def _early_cleanup(self) -> None: Inaugurating type hints "around here", huh? :) WRT method name, up to the end of this series, this method is only about closing the console socket, so *maybe* just name it accordingly and move on to an abstract method name when/if the need arises? Either way, Reviewed-by: Cleber Rosa Tested-by: Cleber Rosa