43 lines
1.2 KiB
Diff
43 lines
1.2 KiB
Diff
|
From: John Snow <jsnow@redhat.com>
|
||
|
Date: Mon, 10 Jan 2022 18:28:48 -0500
|
||
|
Subject: python/aqmp: add SocketAddrT to package root
|
||
|
|
||
|
Git-commit: 728dcac5e356ce5b948943f21c0c72a1b2d96122
|
||
|
|
||
|
It's a commonly needed definition, it can be re-exported by the root.
|
||
|
|
||
|
Signed-off-by: John Snow <jsnow@redhat.com>
|
||
|
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
||
|
Reviewed-by: Beraldo Leal <bleal@redhat.com>
|
||
|
Signed-off-by: Li Zhang <lizhang@suse.de>
|
||
|
---
|
||
|
python/qemu/aqmp/__init__.py | 10 +++++++++-
|
||
|
1 file changed, 9 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/python/qemu/aqmp/__init__.py b/python/qemu/aqmp/__init__.py
|
||
|
index 880d5b6fa7f2c966542b12e25571..c6fa2dda58fdf4f1a867e677eadb 100644
|
||
|
--- a/python/qemu/aqmp/__init__.py
|
||
|
+++ b/python/qemu/aqmp/__init__.py
|
||
|
@@ -26,7 +26,12 @@ import logging
|
||
|
from .error import AQMPError
|
||
|
from .events import EventListener
|
||
|
from .message import Message
|
||
|
-from .protocol import ConnectError, Runstate, StateError
|
||
|
+from .protocol import (
|
||
|
+ ConnectError,
|
||
|
+ Runstate,
|
||
|
+ SocketAddrT,
|
||
|
+ StateError,
|
||
|
+)
|
||
|
from .qmp_client import ExecInterruptedError, ExecuteError, QMPClient
|
||
|
|
||
|
|
||
|
@@ -48,4 +53,7 @@ __all__ = (
|
||
|
'ConnectError',
|
||
|
'ExecuteError',
|
||
|
'ExecInterruptedError',
|
||
|
+
|
||
|
+ # Type aliases
|
||
|
+ 'SocketAddrT',
|
||
|
)
|