mirror of
https://github.com/mii443/qemu.git
synced 2025-08-26 17:10:08 +00:00
python: rename qemu.aqmp to qemu.qmp
Now that we are fully switched over to the new QMP library, move it back over the old namespace. This is being done primarily so that we may upload this package simply as "qemu.qmp" without introducing confusion over whether or not "aqmp" is a new protocol or not. The trade-off is increased confusion inside the QEMU developer tree. Sorry! Note: the 'private' member "_aqmp" in legacy.py also changes to "_qmp"; not out of necessity, but just to remove any traces of the "aqmp" name. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Beraldo Leal <bleal@redhat.com> Acked-by: Hanna Reitz <hreitz@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@openvz.org> Message-id: 20220330172812.3427355-8-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
@ -40,8 +40,8 @@ from typing import (
|
||||
TypeVar,
|
||||
)
|
||||
|
||||
from qemu.aqmp import SocketAddrT
|
||||
from qemu.aqmp.legacy import (
|
||||
from qemu.qmp import SocketAddrT
|
||||
from qemu.qmp.legacy import (
|
||||
QEMUMonitorProtocol,
|
||||
QMPMessage,
|
||||
QMPReturnValue,
|
||||
|
@ -26,7 +26,7 @@ from typing import (
|
||||
TextIO,
|
||||
)
|
||||
|
||||
from qemu.aqmp import SocketAddrT
|
||||
from qemu.qmp import SocketAddrT
|
||||
|
||||
from .machine import QEMUMachine
|
||||
|
||||
|
Reference in New Issue
Block a user