qemu-patch-raspberry4/python/qemu/qmp
John Snow 7f17908263 python: expose typing information via PEP 561
https://www.python.org/dev/peps/pep-0561/#specification

Create 'py.typed' files in each subpackage that indicate to mypy that
this is a typed module, so that users of any of these packages can use
mypy to check their code as well.

Note: Theoretically it's possible to ditch MANIFEST.in in favor of using
package_data in setup.cfg, but I genuinely could not figure out how to
get it to include things from the *source root* into the *package root*;
only how to include things from each subpackage. I tried!

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Message-id: 20210629214323.1329806-3-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
2021-06-30 21:54:04 -04:00
..
__init__.py python/qmp: return generic type from context manager 2021-06-18 16:10:07 -04:00
py.typed python: expose typing information via PEP 561 2021-06-30 21:54:04 -04:00
qemu_ga_client.py python/qemu-ga-client: add entry point 2021-06-18 16:10:06 -04:00
qmp_shell.py scripts/qmp-shell: move to python/qemu/qmp/qmp_shell.py 2021-06-18 16:10:07 -04:00
qom.py python/qom: Do not use 'err' name at module scope 2021-06-30 21:54:04 -04:00
qom_common.py python/qmp: Add qom script rewrites 2021-06-18 16:10:06 -04:00
qom_fuse.py scripts/qom-fuse: move to python/qemu/qmp/qom_fuse.py 2021-06-18 16:10:06 -04:00
README.rst python: add directory structure README.rst files 2021-06-01 16:21:21 -04:00

qemu.qmp package
================

This package provides a library used for connecting to and communicating
with QMP servers. It is used extensively by iotests, vm tests,
acceptance tests, and other utilities in the ./scripts directory. It is
not a fully-fledged SDK and is subject to change at any time.

See the documentation in ``__init__.py`` for more information.