diff options
| author | John Snow <jsnow@redhat.com> | 2022-03-30 13:28:10 -0400 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2022-04-21 11:01:00 -0400 |
| commit | 37094b6dd59f56978b918e79cadf17c6fd5d36e2 (patch) | |
| tree | fdd2d3be3a1aafbfb722217ce3ccbfa9637cd0ec /python/qemu/qmp/events.py | |
| parent | 105bbff886782cc44f34d5c87f94529393565840 (diff) | |
| download | focaccia-qemu-37094b6dd59f56978b918e79cadf17c6fd5d36e2.tar.gz focaccia-qemu-37094b6dd59f56978b918e79cadf17c6fd5d36e2.zip | |
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>
Diffstat (limited to '')
| -rw-r--r-- | python/qemu/qmp/events.py (renamed from python/qemu/aqmp/events.py) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qemu/aqmp/events.py b/python/qemu/qmp/events.py index f3d4e2b5e8..6199776cc6 100644 --- a/python/qemu/aqmp/events.py +++ b/python/qemu/qmp/events.py @@ -1,5 +1,5 @@ """ -AQMP Events and EventListeners +QMP Events and EventListeners Asynchronous QMP uses `EventListener` objects to listen for events. An `EventListener` is a FIFO event queue that can be pre-filtered to listen |