From: Wainer dos Santos Moschetta Date: Fri, 30 Apr 2021 13:34:12 +0000 (-0300) Subject: python/qemu: Add args property to the QEMUMachine class X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=555fe0c2a8d5c8a9b6dbf17670018cc2d8f062b3;p=qemu.git python/qemu: Add args property to the QEMUMachine class This added the args property to QEMUMachine so that users of the class can access and handle the list of arguments to be given to the QEMU binary. Reviewed-by: Cleber Rosa Reviewed-by: Willian Rampazzo Signed-off-by: Wainer dos Santos Moschetta Message-Id: <20210430133414.39905-6-wainersm@redhat.com> Signed-off-by: Cleber Rosa --- diff --git a/python/qemu/machine/machine.py b/python/qemu/machine/machine.py index 94846dd71b..971ed7e8c6 100644 --- a/python/qemu/machine/machine.py +++ b/python/qemu/machine/machine.py @@ -316,6 +316,11 @@ class QEMUMachine: args.extend(['-device', device]) return args + @property + def args(self) -> List[str]: + """Returns the list of arguments given to the QEMU binary.""" + return self._args + def _pre_launch(self) -> None: if self._console_set: self._remove_files.append(self._console_address)