diff options
author | Adam Litke <agl@us.ibm.com> | 2011-07-22 13:43:53 +0800 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2011-07-22 13:43:53 +0800 |
commit | 3d3872d29da204cdf8e9503f090029e8b5aa88ba (patch) | |
tree | 31e3d2d72e2a25bb027a796857ce2bd2ff855d8c /generator.py | |
parent | 384d3ae35bb6c4ee90730bd273922447700bea82 (diff) | |
download | libvirt-python-v6-3d3872d29da204cdf8e9503f090029e8b5aa88ba.tar.gz libvirt-python-v6-3d3872d29da204cdf8e9503f090029e8b5aa88ba.tar.xz libvirt-python-v6-3d3872d29da204cdf8e9503f090029e8b5aa88ba.zip |
Enable virDomainBlockPull in the python API
virDomainGetBlockJobInfo requires manual override since it returns a
custom type.
* python/generator.py: reenable bindings for this entry point
* python/libvirt-override-api.xml python/libvirt-override.c:
manual overrides
Diffstat (limited to 'generator.py')
-rwxr-xr-x | generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generator.py b/generator.py index b25c74e..d0d3ae6 100755 --- a/generator.py +++ b/generator.py @@ -186,7 +186,6 @@ def enum(type, name, value): functions_failed = [] functions_skipped = [ "virConnectListDomains", - 'virDomainGetBlockJobInfo', ] skipped_modules = { @@ -370,6 +369,7 @@ skip_impl = ( 'virDomainSendKey', 'virNodeGetCPUStats', 'virNodeGetMemoryStats', + 'virDomainGetBlockJobInfo', ) |