summary refs log tree commit diff stats
path: root/python/qemu/qmp.py
diff options
context:
space:
mode:
authorWainer dos Santos Moschetta <wainersm@redhat.com>2019-12-27 10:41:01 -0300
committerPhilippe Mathieu-Daudé <philmd@redhat.com>2020-02-07 15:12:48 +0100
commit50d189c97ab8ed3de80d0ed22a867e1d5361fd02 (patch)
tree4014badc9d556de752cbbaaa84365b4dbf19a5de /python/qemu/qmp.py
parent07608e807d4e7bd2daa7fe154bd9dc2235c1a323 (diff)
downloadfocaccia-qemu-50d189c97ab8ed3de80d0ed22a867e1d5361fd02.tar.gz
focaccia-qemu-50d189c97ab8ed3de80d0ed22a867e1d5361fd02.zip
python/qemu: qmp: Remove unnused attributes
The `error` and `timeout` attributes in QEMUMonitorProtocol are
not used, so this delete them.

Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20191227134101.244496-6-wainersm@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to '')
-rw-r--r--python/qemu/qmp.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/python/qemu/qmp.py b/python/qemu/qmp.py
index 486a566da0..4b9a362240 100644
--- a/python/qemu/qmp.py
+++ b/python/qemu/qmp.py
@@ -45,10 +45,6 @@ class QEMUMonitorProtocol:
 
     #: Logger object for debugging messages
     logger = logging.getLogger('QMP')
-    #: Socket's error class
-    error = socket.error
-    #: Socket's timeout
-    timeout = socket.timeout
 
     def __init__(self, address, server=False):
         """